/* ═══════════════════════════════════════════════════════════════
   YAMAGUTI ODONTOLOGIA — folha de estilo única
   ───────────────────────────────────────────────────────────────
   01. TOKENS
   02. RESET E BASE
   03. UTILITÁRIOS
   04. BOTÕES
   05. CABEÇALHO
   06. MENU MOBILE
   07. HERO
   08. FAIXA DE ESPECIALIDADES
   09. TÍTULOS DE SEÇÃO
   10. SOBRE
   11. PROCEDIMENTOS
   12. DIFERENCIAL
   13. AVALIAÇÕES
   14. PERGUNTAS + CTA
   15. RODAPÉ
   16. WHATSAPP FLUTUANTE
   17. ANIMAÇÕES
   18. RESPONSIVO
   19. CONSENTIMENTO DE COOKIES
   ═══════════════════════════════════════════════════════════════ */


/* ═══ 01. TOKENS ═══════════════════════════════════════════════ */
:root {
  /* superfícies */
  --creme:        #FBF4EF;
  --creme-2:      #F6EBE2;
  --creme-3:      #F1E2D7;
  --branco:       #FFFFFF;

  /* marca */
  --terra:        #BE7B5F;
  --terra-esc:    #A5654B;
  --terra-clara:  #CE9376;
  --rosa:         #E4C3B2;

  /* texto */
  --texto:        #3A2A23;
  --texto-med:    #6B5348;
  --texto-fraco:  #9A8478;

  /* linhas */
  --linha:        #EADBD0;
  --estrela:      #C99A45;

  /* tipografia */
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Outfit', system-ui, -apple-system, sans-serif;

  /* medidas */
  --wrap:         1200px;
  --raio:         14px;
  --raio-g:       20px;

  /* sombras */
  --sombra-p:     0 2px 14px rgba(90,50,35,.06);
  --sombra-m:     0 12px 40px rgba(90,50,35,.10);
  --sombra-g:     0 24px 64px rgba(90,50,35,.15);

  --cab-altura:   78px;
}


/* ═══ 02. RESET E BASE ═════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--cab-altura); }

body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--rosa); color: var(--texto); }

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

.pular {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--terra); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.pular:focus { left: 0; }


/* ═══ 03. UTILITÁRIOS ══════════════════════════════════════════ */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 40px;
  width: 100%;
}

.faixa      { padding-block: 80px; }

/* Colunas divididas em que a imagem sangra até a borda da tela,
   enquanto o texto continua alinhado ao container central.
   É o que a referência faz em "quem somos", "diferencial" e FAQ. */
.split { display: grid; align-items: stretch; }
.split__texto--esq, .split__texto--dir {
  display: flex; flex-direction: column; justify-content: center;
}
.split__texto--esq {
  padding: 62px clamp(36px, 4.5vw, 64px) 62px max(24px, calc((100vw - var(--wrap)) / 2 + 40px));
}
.split__texto--dir {
  padding: 62px max(24px, calc((100vw - var(--wrap)) / 2 + 40px)) 62px clamp(36px, 4.5vw, 64px);
}
.split__figura { position: relative; min-height: 380px; }
.split__figura img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.faixa--alt   { background: var(--creme-2); }
.faixa--curta { padding-block: 76px; }

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


/* ═══ 04. BOTÕES ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; line-height: 1;
  padding: 14px 24px; border-radius: 9px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .22s, color .22s, border-color .22s, transform .18s, box-shadow .22s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primario {
  background: var(--terra); color: var(--branco);
  box-shadow: 0 6px 18px rgba(190,123,95,.20);
}
.btn--primario:hover {
  background: var(--terra-esc); transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(190,123,95,.28);
}

.btn--linha {
  background: rgba(255,255,255,.72); color: var(--texto); border-color: var(--linha);
  backdrop-filter: blur(6px);
}
.btn--linha:hover {
  border-color: var(--terra); color: var(--terra); transform: translateY(-2px);
  background: var(--branco);
}

.btn--claro { background: var(--branco); color: var(--terra-esc); }
.btn--claro:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.20); }


/* ═══ 05. CABEÇALHO ════════════════════════════════════════════ */
.cab {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,244,239,.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.cab.is-fixo {
  border-bottom-color: var(--linha);
  box-shadow: 0 4px 22px rgba(90,50,35,.05);
}

.cab__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; height: var(--cab-altura);
}

.marca { display: flex; align-items: center; gap: 12px; flex-shrink: 0; color: var(--terra); }
.marca__simbolo { width: 40px; height: 40px; flex-shrink: 0; }
.marca__txt  { display: flex; flex-direction: column; line-height: 1.15; }
.marca__nome { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--texto); letter-spacing: .005em; }
.marca__tag  { font-family: var(--serif); font-style: italic; font-size: 11px; color: var(--terra); letter-spacing: .02em; }

.menu { display: flex; align-items: center; gap: 32px; }
.menu a {
  font-size: 15.5px; color: var(--texto-med); position: relative; padding-block: 6px;
  transition: color .2s;
}
.menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--terra); transition: width .26s ease;
}
.menu a:hover { color: var(--terra); }
.menu a:hover::after, .menu a.is-ativo::after { width: 100%; }
.menu a.is-ativo { color: var(--terra); }

.cab__cta {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  background: var(--terra); color: var(--branco);
  font-size: 14px; font-weight: 500; padding: 13px 22px; border-radius: 10px;
  box-shadow: 0 6px 20px rgba(190,123,95,.28);
  transition: background .2s, transform .18s, box-shadow .2s;
}
.cab__cta svg { width: 17px; height: 17px; }
.cab__cta:hover { background: var(--terra-esc); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(190,123,95,.36); }

.cab__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; padding: 10px; flex-direction: column; justify-content: space-between;
}
.cab__burger span { display: block; height: 2px; width: 100%; background: var(--texto); border-radius: 2px; transition: transform .3s, opacity .2s; }


/* ═══ 06. MENU MOBILE ══════════════════════════════════════════ */
.mmenu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--creme);
  display: flex; flex-direction: column; padding: 26px 28px 34px;
  transform: translateX(100%); transition: transform .34s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mmenu.is-aberto { transform: translateX(0); visibility: visible; }
.mmenu__fechar { align-self: flex-end; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--texto); }
.mmenu__fechar svg { width: 28px; height: 28px; }
.mmenu__links { display: flex; flex-direction: column; margin-top: 20px; }
.mmenu__links a {
  font-family: var(--serif); font-size: 27px; color: var(--texto);
  padding: 15px 0; border-bottom: 1px solid var(--linha);
}
.mmenu__cta { margin-top: auto; width: 100%; }


/* ═══ 07. HERO ═════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(480px, 60vh, 545px);
  display: flex; align-items: center;
  background: var(--creme-2);
  overflow: hidden;
}

/* A foto fica ancorada no canto inferior direito, ocupando só parte
   da largura. É isso que dá o respiro em volta da Dra. e evita que
   ela apareça gigante e colada no topo. */
.hero__foto {
  position: absolute; right: 4%; bottom: 0;
  width: 60%; max-width: 940px; height: auto;
  z-index: 0;
  /* Aquece o cinza da parede para o mesmo tom do fundo bege,
     senão o recorte da foto lê como um retângulo cinza colado. */
  filter: saturate(1.06) sepia(.14) brightness(1.06) contrast(.97);
  /* Máscara dissolve as bordas de cima e da esquerda, senão a foto
     fica com um recorte retangular duro boiando sobre o creme. */
  /* Máscara nos quatro lados: a foto tem que dissolver no fundo,
     sem nenhuma borda ou mudança brusca de tom. */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 14%, #000 34%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 20%, #000 44%, #000 86%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 14%, #000 34%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 20%, #000 44%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* Véu que garante leitura do texto sobre a foto, sem lavar o rosto */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251,244,239,.92) 0%, rgba(251,244,239,.78) 28%, rgba(251,244,239,.28) 46%, rgba(251,244,239,0) 62%);
}

.hero__in { position: relative; z-index: 2; }

.hero__conteudo { max-width: 560px; }

.hero__olho {
  font-size: 14px; font-weight: 500; letter-spacing: .34em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 8px;
}
.hero__titulo {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 4.2vw, 58px); line-height: 1.02; letter-spacing: -.015em;
  color: var(--texto); margin-bottom: 18px;
}
.hero__titulo span { display: block; color: var(--terra-clara); }

.hero__sub {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.45; color: var(--texto);
  max-width: 320px; margin-bottom: 20px;
}
.hero__risco { width: 52px; height: 2px; background: var(--terra); border-radius: 2px; margin-bottom: 20px; }
.hero__texto {
  font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--texto-med);
  max-width: 390px; margin-bottom: 30px;
}
.hero__acoes { display: flex; gap: 16px; flex-wrap: wrap; }


/* ═══ 08. FAIXA DE ESPECIALIDADES ══════════════════════════════ */
.especialidades { background: var(--creme); border-block: 1px solid var(--linha); }
.especialidades__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; padding-block: 19px; flex-wrap: wrap;
}
.especialidades__item {
  display: flex; align-items: center; gap: 11px;
  font-size: 15px; font-weight: 400; color: var(--texto-med);
}
.especialidades__item svg { width: 26px; height: 26px; color: var(--terra); flex-shrink: 0; }
/* Ponto em vez de barra vertical: a referência separa assim,
   e o resultado é bem mais leve. */
.especialidades__sep {
  width: 3px; height: 3px; border-radius: 50%; background: var(--terra-clara); opacity: .6;
}


/* ═══ 09. TÍTULOS DE SEÇÃO ═════════════════════════════════════ */
.olho {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--terra);
  margin-bottom: 12px;
}
.titulo {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.01em;
  font-size: clamp(32px, 3.7vw, 47px); line-height: 1.12; color: var(--texto);
}
.titulo em { font-style: normal; color: var(--terra-clara); }
.risco { width: 56px; height: 3px; background: var(--terra); border-radius: 2px; margin-top: 18px; }


/* ═══ 10. SOBRE ════════════════════════════════════════════════ */
.sobre { grid-template-columns: 0.82fr 1.18fr; }
.sobre__figura { min-height: 360px; max-height: 460px; }

.sobre .titulo { font-size: clamp(28px, 2.9vw, 36px); }
/* Na referência a primeira linha é terracota e a segunda é escura */
.sobre .titulo em { display: block; color: var(--texto); }
.sobre .titulo > span { color: var(--terra); }

.sobre__risco { width: 48px; height: 2px; background: var(--terra); border-radius: 2px; margin: 16px 0 22px; }

.sobre__texto p {
  font-size: 14.5px; font-weight: 300; line-height: 1.85; color: var(--texto-med);
  margin-bottom: 15px; max-width: 360px;
}
.sobre__texto p:last-child { margin-bottom: 0; }
.sobre__intro { color: var(--texto-med); }


/* ═══ 11. PROCEDIMENTOS ════════════════════════════════════════ */
.proc__topo { margin-bottom: 34px; }

/* Flex em vez de grid: com 7 itens, a última fileira de 3 fica
   centralizada sozinha, em vez de encostada à esquerda. */
.proc__grade { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.proc__grade .card { flex: 0 1 calc((100% - 60px) / 4); min-width: 228px; }

/* Sem sombra: só um fio de contorno. É o que mantém a página leve. */
.card {
  display: flex; flex-direction: column;
  background: #FDFAF7; border: 1px solid var(--linha); border-radius: 10px;
  overflow: hidden; color: var(--texto);
  transition: transform .26s ease, border-color .26s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--rosa); }

.card__media { position: relative; aspect-ratio: 4 / 2.45; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card__media img { transform: scale(1.06); }
/* Enquanto a fotografia não existe, um bloco claro em tom de areia
   com o ícone em terracota. Fica discreto e coerente com o resto,
   em vez de um retângulo saturado dominando o card. */
.card__media--vazia {
  display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 68% 22%, rgba(255,255,255,.7), transparent 62%),
    linear-gradient(150deg, var(--cream, #EFE2D8) 0%, var(--creme-3) 100%);
  border-bottom: 1px solid var(--linha);
}
.card__marca { width: 42px; height: 42px; color: var(--terra); opacity: .55; }
.card:hover .card__marca { opacity: .8; transition: opacity .3s; }
.card--sem-foto .card__corpo { padding-top: 30px; }

/* Sem anel branco em volta: na referência é um selo chapado. */
.card__icone {
  position: absolute; left: 18px; top: -20px; z-index: 2;
  width: 42px; height: 42px; border-radius: 13px;
  background: var(--terra); display: grid; place-items: center;
}
.card__icone svg { width: 21px; height: 21px; color: var(--branco); }

.card__corpo { position: relative; padding: 30px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card__nome {
  font-family: var(--serif); font-size: 17px; font-weight: 600; line-height: 1.3;
  margin-bottom: 9px;
}
.card__desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--texto-fraco); }


/* ═══ 12. DIFERENCIAL ══════════════════════════════════════════ */
.dif { grid-template-columns: 0.86fr 1.14fr; background: var(--creme); }
.dif__figura { min-height: 360px; max-height: 470px; }

.dif__titulo {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.01em;
  font-size: clamp(25px, 2.6vw, 33px); line-height: 1.22; color: var(--texto);
}
.dif__risco { width: 52px; height: 2px; background: var(--terra); border-radius: 2px; margin: 18px 0 0; }

.dif__lista { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; margin-top: 28px; }
.dif__item { display: flex; gap: 12px; align-items: flex-start; }
.dif__item svg { width: 24px; height: 24px; color: var(--terra); opacity: .85; flex-shrink: 0; margin-top: 1px; }
.dif__item h3 { font-size: 14.5px; font-weight: 400; line-height: 1.55; color: var(--texto-med); max-width: 190px; }

/* Nota do anestesista: sem card, sem borda, sem ícone.
   Só um fio de separação e a tipografia carregando o peso. */
.dif__nota {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--linha); max-width: 470px;
}
.dif__nota-titulo {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 17px; color: var(--texto); margin-bottom: 8px;
}
.dif__nota-texto {
  font-size: 13.5px; font-weight: 300; line-height: 1.8; color: var(--texto-fraco);
}


/* ═══ 13. AVALIAÇÕES ═══════════════════════════════════════════ */
.aval { text-align: center; padding-block: 66px; }

/* O depoimento vira um card com borda, como na referência:
   título → estrelas → depoimento, tudo próximo e com presença. */
.carrossel {
  position: relative; max-width: 720px; margin: 24px auto 0;
  background: #FDFAF7; border: 1px solid var(--linha);
  border-radius: 12px; padding: 26px 26px 22px;
}
.aval__resumo { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 18px; }
.aval__estrelas { color: var(--estrela); font-size: 18px; letter-spacing: 4px; }
.aval__nota { font-size: 13px; color: var(--texto-fraco); }

.carrossel__janela { overflow: hidden; transition: height .45s cubic-bezier(.22,.61,.36,1); }
.carrossel__trilho { display: flex; transition: transform .55s cubic-bezier(.22,.61,.36,1); }

.depo {
  min-width: 100%; padding: 0 18px;
  opacity: .25; transition: opacity .45s ease;
}
.depo.is-ativo { opacity: 1; }
.depo__aspas {
  font-family: var(--serif); font-size: 32px; line-height: 1; color: var(--rosa);
  display: block; margin-bottom: 0;
}
.depo__texto {
  font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.65;
  color: var(--texto); margin-bottom: 16px;
}
.depo__autor { font-size: 13px; color: var(--texto-fraco); }

.carrossel__seta {
  position: absolute; top: 50%; translate: 0 -50%;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--branco); border: 1px solid var(--linha); color: var(--terra);
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.carrossel__seta svg { width: 20px; height: 20px; display: block; }
.carrossel__seta:hover { background: var(--terra); color: var(--branco); border-color: var(--terra); }
.carrossel__seta--ant { left: -22px; }
.carrossel__seta--prox { right: -22px; }

.carrossel__pontos { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.ponto {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: var(--creme-3); cursor: pointer; transition: width .25s, background .25s, border-radius .25s;
}
.ponto[aria-current="true"] { background: var(--terra); width: 24px; border-radius: 4px; }

.aval__acoes { margin-top: 22px; }


/* ═══ 14. PERGUNTAS + CTA ══════════════════════════════════════ */
/* Sem título grande: na referência há só o olho em caixa alta.
   O peso visual da dobra fica na foto que sangra à direita. */
.faq { grid-template-columns: 1.1fr .9fr; align-items: stretch; }

.faq__lista { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }

.faq__item {
  background: var(--branco); border: 1px solid var(--linha); border-radius: 8px;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--rosa); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 19px; cursor: pointer; list-style: none;
  font-size: 14px; font-weight: 400; color: var(--texto);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-size: 19px; font-weight: 300; color: var(--terra);
  line-height: 1; flex-shrink: 0; transition: rotate .28s ease;
}
.faq__item[open] summary::after { rotate: 45deg; }
.faq__resposta {
  padding: 0 20px 18px; font-size: 14px; font-weight: 300; line-height: 1.8;
  color: var(--texto-med);
}

/* Painel com a foto sangrando até a borda direita da tela */
.painel-cta { position: relative; display: grid; place-items: center; }
/* Mesma altura da coluna de perguntas: o painel respeita o mesmo
   respiro vertical da seção, em vez de sangrar de topo a base. */
.faq .painel-cta { margin-block: 62px; }
.painel-cta__foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.painel-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(112,62,43,.52) 0%, rgba(128,72,50,.68) 100%);
}
.painel-cta__conteudo {
  position: relative; z-index: 1; text-align: center;
  padding: 44px clamp(26px, 3.5vw, 48px); max-width: 360px;
}
.painel-cta h2 {
  font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.25;
  color: var(--branco); margin-bottom: 10px;
}
.painel-cta p {
  font-size: 14.5px; font-weight: 300; line-height: 1.65;
  color: var(--branco); opacity: .95; margin-bottom: 24px;
}
.painel-cta .btn { background: var(--branco); color: var(--terra-esc); }
.painel-cta__tel {
  display: block; margin-top: 14px; font-size: 13.5px; color: var(--branco); opacity: .9;
}
.painel-cta__tel:hover { text-decoration: underline; }


/* ═══ 15. RODAPÉ ═══════════════════════════════════════════════ */
.rodape {
  background: linear-gradient(160deg, var(--terra) 0%, var(--terra-esc) 100%);
  color: var(--branco);
}
.rodape__grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.05fr; gap: 48px;
  padding-block: 36px 28px;
}
.rodape__marca {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 14px;
}
.rodape__marca svg { width: 36px; height: 36px; flex-shrink: 0; }
.rodape__sobre { font-size: 15.5px; font-weight: 300; line-height: 1.7; opacity: .92; max-width: 300px; }

.rodape__redes { display: flex; gap: 11px; margin-top: 20px; }
.rodape__redes a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  display: grid; place-items: center; transition: background .2s, border-color .2s;
}
.rodape__redes a:hover { background: rgba(255,255,255,.16); border-color: transparent; }
.rodape__redes svg { width: 18px; height: 18px; }

.rodape__titulo {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; opacity: .72; margin-bottom: 20px;
}
.rodape__contato li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; }
.rodape__contato svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; opacity: .85; }
.rodape__contato a, .rodape__contato span {
  font-size: 15.5px; font-weight: 300; line-height: 1.55; opacity: .95;
}
.rodape__contato a:hover { text-decoration: underline; }

.rodape__col--cta { display: flex; flex-direction: column; align-items: flex-start; }
.rodape__col--cta .btn { align-self: flex-start; }
.rodape__chamada {
  font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.35;
  margin-bottom: 24px;
}
.rodape__link-mapa {
  display: inline-block; margin-top: 18px; font-size: 14px; opacity: .9;
  border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px;
}
.rodape__link-mapa:hover { opacity: 1; }

.rodape__barra {
  background: rgba(0,0,0,.13);
  padding-block: 15px; text-align: center;
  font-size: 12.5px; font-weight: 300; opacity: .92;
}
.rodape__barra a { text-decoration: underline; }


/* ═══ 16. WHATSAPP FLUTUANTE ═══════════════════════════════════ */
.zap-flutuante {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.42);
  transition: transform .2s, box-shadow .2s;
}
.zap-flutuante svg { width: 28px; height: 28px; }
.zap-flutuante:hover { transform: scale(1.07); box-shadow: 0 12px 34px rgba(37,211,102,.5); }


/* ═══ 17. ANIMAÇÕES ════════════════════════════════════════════ */
@keyframes sobe {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.surge { opacity: 0; }
.surge.is-visivel { animation: sobe .72s cubic-bezier(.22,.61,.36,1) forwards; }
.surge.d1 { animation-delay: .08s; }
.surge.d2 { animation-delay: .16s; }
.surge.d3 { animation-delay: .24s; }
.surge.d4 { animation-delay: .32s; }


/* ═══ 18. RESPONSIVO ═══════════════════════════════════════════ */
@media (max-width: 1080px) {
  .hero { min-height: clamp(620px, 78vh, 740px); }
  .hero__foto { width: 78%; }
  .faixa { padding-block: 96px; }
  .proc__grade .card { flex: 0 1 calc((100% - 22px) / 2); }
}

@media (max-width: 940px) {
  :root { --cab-altura: 74px; }
  .menu, .cab__cta { display: none; }
  .cab__burger { display: flex; }
  .wrap { padding-inline: 28px; }

  .hero {
    display: flex; flex-direction: column;
    min-height: auto; background: var(--creme-2);
  }
  .hero::after { display: none; }
  .hero__in { order: 1; padding-top: 54px; padding-bottom: 40px; }
  .hero picture { order: 2; display: block; width: 100%; }
  .hero__foto {
    position: static; right: auto; bottom: auto;
    width: 100%; max-width: none; height: auto;
    /* Sem corte: o recorte vertical já vem enquadrado na Dra. */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 12%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }
  .hero__conteudo { max-width: 100%; }
  .hero__texto { max-width: 100%; }

  .split { grid-template-columns: 1fr !important; }
  .split__texto--esq, .split__texto--dir { padding: 60px 28px; }
  .sobre__figura, .dif__figura { min-height: 300px; order: -1; }
  .painel-cta { min-height: 320px; }
  .faq .painel-cta { margin-block: 0; }
  .sobre__texto p { max-width: none; }
  .dif__item h3 { max-width: none; }
  .rodape__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rodape__col--cta { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .wrap  { padding-inline: 20px; }
  .faixa { padding-block: 66px; }

  .hero__in { padding-top: 44px; padding-bottom: 36px; }

  .hero__titulo { font-size: clamp(42px, 12vw, 56px); }
  .hero__acoes .btn { width: 100%; }

  .especialidades__in { justify-content: center; gap: 14px 22px; }
  .especialidades__sep { display: none; }

  .proc__grade .card { flex: 0 1 100%; }
  .dif__lista { grid-template-columns: 1fr; gap: 22px; }
  .split__texto--esq, .split__texto--dir { padding: 52px 20px; }

  .carrossel { padding: 26px 18px 24px; }
  .depo { padding: 0; }
  .depo__texto { font-size: 18px; }
  .carrossel__seta { display: none; }

  .rodape__grid { grid-template-columns: 1fr; gap: 36px; }
  .zap-flutuante { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

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


/* ═══ 19. CONSENTIMENTO DE COOKIES (LGPD) ══════════════════════ */
.lgpd {
  position: fixed; left: 50%; bottom: 20px; translate: -50% 0; z-index: 300;
  width: min(760px, calc(100% - 32px));
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: var(--branco); border: 1px solid var(--linha);
  border-radius: var(--raio); padding: 18px 22px;
  box-shadow: var(--sombra-g);
  opacity: 0; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
}
.lgpd.is-visivel { opacity: 1; transform: translateY(0); }
.lgpd__txt {
  flex: 1 1 320px; font-size: 13.5px; font-weight: 300; line-height: 1.6;
  color: var(--texto-med); margin: 0;
}
.lgpd__txt a { color: var(--terra); border-bottom: 1px solid var(--linha); }
.lgpd__txt a:hover { border-bottom-color: var(--terra); }
.lgpd__acoes { display: flex; gap: 10px; flex-shrink: 0; }
.lgpd__btn { padding: 11px 20px; font-size: 14px; }

@media (max-width: 620px) {
  .lgpd { bottom: 12px; padding: 16px 18px; gap: 14px; }
  .lgpd__acoes { width: 100%; }
  .lgpd__btn { flex: 1; }
  /* não deixa o banner cobrir o botão do WhatsApp */
  .zap-flutuante { bottom: 130px; }
}
