/* ==========================================================================
   PRONTOVET CENTRO VETERINÁRIO — Folha de estilo principal
   Campo Grande/MS · Site institucional estático
   --------------------------------------------------------------------------
   Sumário:
   01. Variáveis (design tokens)
   02. Reset e base
   03. Tipografia e utilitários de layout
   04. Botões
   05. Cabeçalho fixo e navegação
   06. Menu mobile (drawer)
   07. Hero (banner + área de conversão)
   08. Barra de credibilidade
   09. Serviços — jornada de cuidado (master-detail)
   10. Multi Prontovet
   11. Sobre / linha do tempo
   12. Estrutura
   12b. Faixa de destaque (azul)
   15. FAQ
   16. Localização e contato
   17. Rodapé
   18. Botão flutuante do WhatsApp
   19. Animações de entrada (reveal)
   20. Preferências de movimento e impressão
   ========================================================================== */

/* ==========================================================================
   01. VARIÁVEIS
   ========================================================================== */
:root {
  /* Paleta institucional */
  --azul-escuro: #045897;
  --azul-claro: #0090D4;
  --azul-profundo: #06377A;
  --amarelo: #F7C623;
  --laranja: #F79122;
  --verde-whatsapp: #25D366;

  /* Verde de ação: versão escurecida do verde WhatsApp, usada em botões com
     texto branco para garantir contraste AA (5.3:1). O verde da marca fica
     reservado para ícones e detalhes gráficos. */
  --verde-acao: #0C7C3D;
  --verde-acao-hover: #0A6B34;

  /* Neutros */
  --texto: #141413;
  --texto-secundario: #5A5A5A;
  --fundo: #FFFFFF;
  --fundo-alternativo: #F5F8FB;

  /* Tom exato da faixa inferior do banner do topo: faz a página parecer uma
     continuação natural da imagem. */
  --fundo-banner: #F4F5F9;

  --borda: #E4EAF1;
  --borda-forte: #D3DEEA;

  /* Raios de borda — contidos, para o site não parecer "arredondado demais" */
  --raio-sm: 10px;
  --raio-md: 12px;
  --raio-lg: 16px;
  --raio-pill: 999px;

  /* Sombras — extremamente suaves */
  --sombra-xs: 0 1px 2px rgba(6, 55, 122, .06);
  --sombra-sm: 0 2px 10px rgba(6, 55, 122, .05);
  --sombra-md: 0 6px 24px rgba(6, 55, 122, .07);
  --sombra-lg: 0 14px 44px rgba(6, 55, 122, .10);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --secao-y: clamp(3.5rem, 7vw, 6rem);

  /* Altura do cabeçalho fixo (usada também no scroll das âncoras) */
  --altura-header: 64px;

  --transicao: 220ms cubic-bezier(.4, 0, .2, 1);
}

@media (min-width: 900px) {
  :root { --altura-header: 74px; }
}

/* ==========================================================================
   02. RESET E BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Impede que as âncoras fiquem escondidas atrás do cabeçalho fixo */
  scroll-padding-top: calc(var(--altura-header) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--texto);
  background: var(--fundo);
  /* Trava qualquer estouro horizontal acidental */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; border: 0; }

a { color: var(--azul-escuro); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: Ubuntu, "Trebuchet MS", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--azul-profundo);
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

/* Foco sempre visível e consistente */
:focus-visible {
  outline: 3px solid var(--azul-claro);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==========================================================================
   03. TIPOGRAFIA E UTILITÁRIOS DE LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.secao { padding-block: var(--secao-y); }
.secao--clara { background: var(--fundo-alternativo); }
/* Ritmo vertical variado: nem toda seção precisa do mesmo respiro */
.secao--compacta { padding-block: clamp(2.75rem, 5vw, 4.25rem); }

.secao__cabecalho {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.secao__cabecalho--centro { margin-inline: auto; text-align: center; }

/* Olho editorial acima dos títulos */
.olho {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul-escuro);
  margin-bottom: .7rem;
}
.olho::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--amarelo);
}
.olho--claro { color: var(--amarelo); }

h1 { font-size: clamp(1.7rem, 1.12rem + 2.6vw, 2.85rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.3rem); }
h3 { font-size: clamp(1.05rem, .98rem + .35vw, 1.25rem); }

.secao__texto {
  margin-top: .9rem;
  font-size: clamp(1rem, .97rem + .2vw, 1.08rem);
  color: var(--texto-secundario);
  max-width: 62ch;
}
.secao__cabecalho--centro .secao__texto { margin-inline: auto; }

/* Conteúdo visível apenas para leitores de tela */
.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;
}

/* Link "pular para o conteúdo" */
.pular-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1200;
  background: var(--azul-profundo);
  color: #fff;
  padding: .75rem 1.15rem;
  border-radius: var(--raio-sm);
  font-weight: 600;
  transition: top var(--transicao);
}
.pular-link:focus { top: 1rem; text-decoration: none; }

/* ==========================================================================
   04. BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--raio-pill);
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: .96rem;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background-color var(--transicao), color var(--transicao),
              border-color var(--transicao), transform var(--transicao),
              box-shadow var(--transicao);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icone { width: 20px; height: 20px; flex: none; }

.btn--whatsapp { background: var(--verde-acao); color: #fff; box-shadow: var(--sombra-sm); }
.btn--whatsapp:hover { background: var(--verde-acao-hover); box-shadow: var(--sombra-md); }

.btn--primario { background: var(--azul-escuro); color: #fff; box-shadow: var(--sombra-sm); }
.btn--primario:hover { background: var(--azul-profundo); box-shadow: var(--sombra-md); }

.btn--secundario {
  background: #fff;
  color: var(--azul-profundo);
  border-color: var(--borda-forte);
}
.btn--secundario:hover { border-color: var(--azul-escuro); color: var(--azul-escuro); }

.btn--amarelo { background: var(--amarelo); color: #2A1D00; box-shadow: var(--sombra-sm); }
.btn--amarelo:hover { background: #FFD647; box-shadow: var(--sombra-md); }

.btn--contorno-claro { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--contorno-claro:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--bloco { width: 100%; }

/* Link com sublinhado animado */
.link-anim { position: relative; font-weight: 600; color: var(--azul-escuro); }
.link-anim::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transicao);
}
.link-anim:hover { text-decoration: none; }
.link-anim:hover::after { transform: scaleX(1); transform-origin: left; }

/* ==========================================================================
   05. CABEÇALHO FIXO E NAVEGAÇÃO
   ========================================================================== */
.cabecalho {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transicao), border-color var(--transicao),
              background-color var(--transicao);
}

/* Estado aplicado por JS após ~34px de rolagem */
.cabecalho.esta-rolado {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--borda);
  box-shadow: 0 4px 20px rgba(6, 55, 122, .07);
}

/* Navegadores sem suporte a blur mantêm o fundo sólido */
@supports not (backdrop-filter: blur(4px)) {
  .cabecalho.esta-rolado { background: #fff; }
}

.cabecalho__interno {
  height: var(--altura-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.marca { display: inline-flex; align-items: center; gap: .6rem; }
.marca:hover { text-decoration: none; }
.marca__logo { width: 42px; height: 42px; }
.marca__nome {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.marca__nome strong {
  font-family: Ubuntu, sans-serif;
  font-size: 1.05rem;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
}
.marca__nome span {
  font-size: .62rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--texto-secundario);
  font-weight: 600;
}

/* Navegação principal — oculta no mobile */
.nav-principal { display: none; }

.nav-principal ul {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 1.4vw, 1.5rem);
}
.nav-principal a {
  position: relative;
  display: block;
  padding: .45rem .2rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--texto);
  white-space: nowrap;
}
.nav-principal a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--amarelo);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transicao);
}
.nav-principal a:hover { color: var(--azul-escuro); text-decoration: none; }
.nav-principal a:hover::after { transform: scaleX(1); transform-origin: left; }

.cabecalho__acoes { display: flex; align-items: center; gap: .6rem; }
.cabecalho__whats { display: none; }

/* Botão hambúrguer */
.btn-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--transicao), background-color var(--transicao);
}
.btn-menu:hover { border-color: var(--azul-claro); }
.btn-menu__barras {
  position: relative;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--azul-profundo);
  transition: background-color var(--transicao);
}
.btn-menu__barras::before,
.btn-menu__barras::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--azul-profundo);
  transition: transform var(--transicao);
}
.btn-menu__barras::before { top: -6px; }
.btn-menu__barras::after { top: 6px; }

/* Vira um "X" quando o menu está aberto */
.btn-menu[aria-expanded="true"] .btn-menu__barras { background: transparent; }
.btn-menu[aria-expanded="true"] .btn-menu__barras::before { transform: translateY(6px) rotate(45deg); }
.btn-menu[aria-expanded="true"] .btn-menu__barras::after { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-principal { display: block; }
  .cabecalho__whats { display: inline-flex; }
  .btn-menu { display: none; }
  .marca__logo { width: 46px; height: 46px; }
}

/* ==========================================================================
   06. MENU MOBILE (DRAWER)
   ========================================================================== */
.menu-fundo {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(6, 55, 122, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transicao), visibility var(--transicao);
}
.menu-fundo.esta-ativo { opacity: 1; visibility: visible; }

.menu-lateral {
  position: fixed;
  top: 0; right: 0;
  z-index: 1000;
  width: min(320px, 86vw);
  height: 100%;
  padding: 1.15rem 1.35rem 2rem;
  background: #fff;
  box-shadow: -10px 0 40px rgba(6, 55, 122, .16);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 280ms cubic-bezier(.4, 0, .2, 1), visibility 280ms;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu-lateral.esta-aberto { transform: translateX(0); visibility: visible; }

.menu-lateral__topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--altura-header) - 16px);
  margin-bottom: 1rem;
}
.menu-lateral__titulo {
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texto-secundario);
}
.btn-fechar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  padding: 0;
  background: var(--fundo-alternativo);
  border: 1px solid var(--borda);
  border-radius: 12px;
  cursor: pointer;
  color: var(--azul-profundo);
  transition: background-color var(--transicao);
}
.btn-fechar:hover { background: #EAF1F8; }
.btn-fechar svg { width: 20px; height: 20px; }

.menu-lateral nav ul { display: flex; flex-direction: column; }
.menu-lateral nav a {
  display: block;
  padding: .95rem .25rem;
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--azul-profundo);
  border-bottom: 1px solid var(--borda);
}
.menu-lateral nav a:hover { color: var(--azul-claro); text-decoration: none; }
.menu-lateral .btn { margin-top: 1.5rem; }

.menu-lateral__contato {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--borda);
  font-size: .9rem;
  color: var(--texto-secundario);
}
.menu-lateral__contato strong { display: block; color: var(--texto); }

/* Bloqueia a rolagem do corpo enquanto o menu está aberto */
body.menu-travado { overflow: hidden; }

/* ==========================================================================
   07. HERO (BANNER + ÁREA DE CONVERSÃO)
   ========================================================================== */
.hero { padding-top: var(--altura-header); background: var(--fundo-banner); }

/* Banner institucional: sempre inteiro, sem corte e sem distorção.
   A proporção original (1914x822) é preservada em todos os tamanhos. */
.hero__banner { background: var(--azul-profundo); line-height: 0; }
.hero__banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 1914 / 822;
  display: block;
  /* A altura calculada quase sempre cai em um valor fracionário; sobrepor
     1px evita a linha de costura entre a base da imagem e o fundo da seção,
     que usa exatamente a mesma cor (--fundo-banner). */
  margin-bottom: -1px;
}

.hero__intro {
  background: var(--fundo-banner);
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 5vw, 3.75rem);
}
.hero__intro .container { max-width: 1100px; }

.hero__titulo { max-width: 24ch; }
.hero__titulo .destaque { color: var(--azul-escuro); }

.hero__texto {
  margin-top: 1.1rem;
  max-width: 60ch;
  font-size: clamp(1rem, .96rem + .3vw, 1.13rem);
  color: var(--texto-secundario);
}

.hero__acoes {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.hero__selo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .5rem .9rem .5rem .55rem;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--raio-pill);
  font-size: .85rem;
  color: var(--texto-secundario);
}
.hero__selo svg { width: 18px; height: 18px; color: var(--azul-claro); flex: none; }

@media (min-width: 860px) {
  /* No desktop o texto de conversão e as ações dividem a linha, mantendo a
     área compacta e evitando um segundo "hero" gigante. */
  .hero__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
  .hero__acoes { margin-top: 0; }
  .hero__lateral { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero__selo { margin-top: 0; }
}

/* ==========================================================================
   08. BARRA DE CREDIBILIDADE
   ========================================================================== */
.credibilidade { background: var(--fundo-banner); padding-bottom: clamp(2.5rem, 5vw, 4rem); }

.credibilidade__card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--borda);
  border: 1px solid var(--borda);
  border-radius: var(--raio-lg);
  overflow: hidden;
}

.credibilidade__item {
  background: #fff;
  padding: clamp(1.25rem, 3vw, 1.9rem) clamp(.9rem, 2vw, 1.5rem);
  text-align: center;
}
.credibilidade__numero {
  display: block;
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  line-height: 1.1;
  color: var(--azul-escuro);
  letter-spacing: -0.02em;
}
.credibilidade__rotulo {
  display: block;
  margin-top: .35rem;
  font-size: .85rem;
  line-height: 1.4;
  color: var(--texto-secundario);
}

@media (min-width: 768px) {
  .credibilidade__card { grid-template-columns: repeat(4, 1fr); }
  /* Reserva a altura de duas linhas para que todos os rótulos fiquem
     alinhados, mesmo quando um deles quebra em duas linhas. */
  .credibilidade__rotulo { min-height: 2.8em; }
}

/* ==========================================================================
   09. SERVIÇOS — JORNADA DE CUIDADO (master-detail)
   --------------------------------------------------------------------------
   Desktop: trilha das 5 etapas à esquerda, painel da etapa ativa à direita.
   Mobile:  o mesmo HTML vira um acordeão. Para intercalar botão e painel sem
            duplicar marcação, os dois contêineres usam `display: contents` e
            cada filho recebe uma `order` explícita.
   ========================================================================== */
.jornada__layout { display: grid; gap: 1.5rem; }

/* --- Trilha de etapas --- */
.jornada__trilha { display: grid; gap: .4rem; }

.etapa {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: .85rem;
  width: 100%;
  padding: .9rem 1rem;
  background: transparent;
  border: 0;
  border-radius: var(--raio-md);
  cursor: pointer;
  text-align: left;
  color: var(--azul-profundo);
  transition: background-color var(--transicao), color var(--transicao);
}
.etapa:hover { background: var(--fundo-alternativo); }

.etapa__num {
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--texto-secundario);
  transition: color var(--transicao);
}

.etapa__icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #EAF3FA;
  color: var(--azul-escuro);
  transition: background-color var(--transicao), color var(--transicao);
}
.etapa__icone svg { width: 20px; height: 20px; }

.etapa__nome {
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.25;
}

/* Estado ativo: fundo, cor e barra lateral — não depende só de cor */
.etapa[aria-selected="true"] {
  background: var(--azul-escuro);
  color: #fff;
}
.etapa[aria-selected="true"] .etapa__num { color: var(--amarelo); }
.etapa[aria-selected="true"] .etapa__icone { background: rgba(255, 255, 255, .16); color: #fff; }

/* --- Painel da etapa --- */
.painel-jornada { display: grid; gap: 1.25rem; }
.painel-jornada[hidden] { display: none; }

/* Entrada curta: fade + deslocamento de 8px */
.js .painel-jornada { animation: painel-entra 200ms cubic-bezier(.4, 0, .2, 1) both; }
@keyframes painel-entra {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.painel-jornada__midia {
  margin: 0;
  border-radius: var(--raio-lg);
  overflow: hidden;
  background: var(--fundo-alternativo);
}
.painel-jornada__midia img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}

/* Variante sem foto: cartão da marca com um dado real em destaque */
.painel-jornada__midia--marca {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .85rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--azul-profundo);
  color: #fff;
  min-height: 240px;
}
.marca-selo {
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 2rem + 3vw, 4rem);
  line-height: 1;
  color: var(--amarelo);
}
.marca-selo--icone {
  display: inline-flex;
  width: 62px; height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(247, 198, 35, .14);
}
.marca-selo--icone svg { width: 32px; height: 32px; color: var(--amarelo); }
.marca-selo__texto {
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  line-height: 1.3;
  max-width: 22ch;
}
.marca-selo__nota {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .87rem;
  color: #C9DDF0;
}
.marca-selo__nota svg { width: 17px; height: 17px; color: var(--amarelo); flex: none; }

.painel-jornada__conteudo h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }
.painel-jornada__conteudo > p {
  margin-top: .75rem;
  color: var(--texto-secundario);
  max-width: 60ch;
}
.painel-jornada__conteudo .btn { margin-top: 1.5rem; }

/* Itens da etapa como pills compactas */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.chips li {
  padding: .4rem .85rem;
  background: var(--fundo-alternativo);
  border: 1px solid var(--borda);
  border-radius: var(--raio-pill);
  font-size: .87rem;
  font-weight: 600;
  color: var(--azul-profundo);
}

/* --- Mobile: acordeão --- */
@media (max-width: 899px) {
  .jornada__layout { display: flex; flex-direction: column; gap: 0; }
  .jornada__trilha, .jornada__paineis { display: contents; }

  .etapa {
    border: 1px solid var(--borda);
    border-radius: var(--raio-md);
    margin-top: .6rem;
  }
  .etapa[aria-selected="true"] {
    border-color: var(--azul-escuro);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .painel-jornada {
    padding: 1.25rem;
    border: 1px solid var(--azul-escuro);
    border-top: 0;
    border-radius: 0 0 var(--raio-md) var(--raio-md);
  }
  .painel-jornada__midia img { max-height: 260px; }

  /* No acordeão o nome da etapa já está no cabeçalho: o h3 fica só para
     leitores de tela, para não repetir o título na tela. */
  .painel-jornada__conteudo h3 {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .painel-jornada__conteudo > p { margin-top: 0; }

  /* Intercala botão e painel na ordem 1..10 */
  .etapa:nth-of-type(1) { order: 1 } .painel-jornada:nth-of-type(1) { order: 2 }
  .etapa:nth-of-type(2) { order: 3 } .painel-jornada:nth-of-type(2) { order: 4 }
  .etapa:nth-of-type(3) { order: 5 } .painel-jornada:nth-of-type(3) { order: 6 }
  .etapa:nth-of-type(4) { order: 7 } .painel-jornada:nth-of-type(4) { order: 8 }
  .etapa:nth-of-type(5) { order: 9 } .painel-jornada:nth-of-type(5) { order: 10 }
}

/* --- Desktop: duas colunas --- */
@media (min-width: 900px) {
  .jornada__layout {
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: start;
  }

  /* Trilha de progresso ligando as etapas */
  .jornada__trilha { position: relative; }
  .jornada__trilha::before {
    content: "";
    position: absolute;
    left: 43px; top: 28px; bottom: 28px;
    width: 2px;
    background: var(--borda-forte);
    z-index: 0;
  }
  .etapa { z-index: 1; }

  /* Entre 900 e 1150px o painel empilha: a coluna de texto ficaria estreita
     demais se disputasse espaço com a foto. */
  .painel-jornada__midia img { max-height: 300px; }
}

@media (min-width: 1150px) {
  .painel-jornada {
    grid-template-columns: minmax(0, 300px) 1fr;
    gap: clamp(1.75rem, 3vw, 2.5rem);
    align-items: center;
  }
  .painel-jornada__midia img { max-height: 400px; }
}
/* ==========================================================================
   10. MULTI PRONTOVET
   ========================================================================== */
.multi {
  position: relative;
  background: var(--azul-profundo);
  color: #fff;
  overflow: hidden;
}
/* Grafismo circular discreto, no espírito do banner do topo */
.multi::before {
  content: "";
  position: absolute;
  top: -140px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(247, 198, 35, .10);
  pointer-events: none;
}
.multi::after {
  content: "";
  position: absolute;
  bottom: -180px; left: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(0, 144, 212, .16);
  pointer-events: none;
}
.multi .container { position: relative; z-index: 1; }
.multi h2 { color: #fff; }
.multi__subtitulo {
  margin-top: .75rem;
  font-size: clamp(1rem, .96rem + .3vw, 1.12rem);
  color: #C9DDF0;
  max-width: 52ch;
}
.multi__texto { margin-top: 1.25rem; color: #E4EEF8; max-width: 56ch; }

.multi__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }

.multi__lista { display: grid; gap: .7rem; margin-top: 1.75rem; }
.multi__lista li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-weight: 600;
  color: #fff;
}
.multi__lista svg {
  width: 22px; height: 22px;
  flex: none;
  margin-top: .18rem;
  color: var(--amarelo);
}

.multi__acoes { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }

.multi__midia { position: relative; }
.multi__midia img {
  width: 100%;
  border-radius: var(--raio-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}
.multi__etiqueta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .55rem 1rem;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--raio-pill);
  font-size: .85rem;
  color: #DCE9F5;
}
.multi__etiqueta svg { width: 17px; height: 17px; color: var(--amarelo); flex: none; }

@media (min-width: 900px) {
  .multi__grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
}
/* ==========================================================================
   11. SOBRE / LINHA DO TEMPO
   Composição editorial: título à esquerda, resumo à direita e a linha do
   tempo na horizontal no desktop — ritmo diferente do resto da página.
   ========================================================================== */
.sobre__topo { display: grid; gap: 1rem; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.sobre__resumo { color: var(--texto-secundario); font-size: 1.05rem; max-width: 46ch; }

/* Linha do tempo — vertical no mobile */
.linha-tempo { position: relative; display: grid; gap: 1.75rem; padding-left: 2rem; }
.linha-tempo::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--azul-claro), rgba(0, 144, 212, .18));
}
.linha-tempo li { position: relative; }
.linha-tempo li::before {
  content: "";
  position: absolute;
  left: -2rem; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--azul-claro);
}
.linha-tempo li:last-child::before { border-color: var(--amarelo); background: var(--amarelo); }
.linha-tempo__ano {
  display: block;
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--azul-escuro);
  line-height: 1.2;
}
.linha-tempo p { margin-top: .3rem; color: var(--texto-secundario); font-size: .95rem; }

.sobre__frase {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.4rem 1.6rem;
  background: var(--azul-profundo);
  border-radius: var(--raio-lg);
  color: #fff;
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + .7vw, 1.45rem);
  line-height: 1.3;
}
.sobre__frase svg { width: 32px; height: 32px; color: var(--amarelo); flex: none; }

@media (min-width: 860px) {
  .sobre__topo { grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; }

  /* Linha do tempo na horizontal: 4 marcos lado a lado */
  .linha-tempo {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    padding-left: 0;
    padding-top: 2.5rem;
  }
  .linha-tempo::before {
    left: 0; right: 0; top: 7px; bottom: auto;
    width: auto; height: 2px;
    background: linear-gradient(to right, var(--azul-claro), rgba(0, 144, 212, .18));
  }
  .linha-tempo li::before { left: 0; top: -2.5rem; }
  .linha-tempo p { font-size: .9rem; }
}

/* ==========================================================================
   12. ESTRUTURA — grade assimétrica com as fotos reais da clínica
   ========================================================================== */
.estrutura__grid { display: grid; gap: 1rem; }

.estrutura__item {
  position: relative;
  margin: 0;
  border-radius: var(--raio-lg);
  overflow: hidden;
  background: var(--fundo-alternativo);
}
.estrutura__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(.4, 0, .2, 1);
}
.estrutura__item:hover img { transform: scale(1.03); }

.estrutura__legenda {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.15rem .9rem;
  background: linear-gradient(to top,
              rgba(6, 55, 122, .95) 0%,
              rgba(6, 55, 122, .78) 45%,
              rgba(6, 55, 122, 0) 100%);
  color: #fff;
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: .95rem;
}

@media (min-width: 700px) {
  /* Foto larga da fachada em cima, dois retratos embaixo */
  .estrutura__grid { grid-template-columns: repeat(2, 1fr); }
  .estrutura__item--largo { grid-column: 1 / -1; }
  .estrutura__item--largo img { min-height: 300px; max-height: 380px; }
  .estrutura__item img { min-height: 300px; }
}

@media (min-width: 1000px) {
  /* Assimetria: fachada ocupa duas colunas e duas linhas */
  .estrutura__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .estrutura__item--largo { grid-column: span 1; grid-row: span 1; }
  .estrutura__item--largo img { max-height: none; min-height: 420px; }
  .estrutura__item img { min-height: 420px; }
}

/* ==========================================================================
   12b. FAIXA DE DESTAQUE (azul, entre Estrutura e FAQ)
   Traz o azul institucional de volta antes do fim da página.
   ========================================================================== */
.faixa {
  position: relative;
  background: var(--azul-profundo);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
/* Mesmo vocabulário gráfico da seção Multi Prontovet */
.faixa::before {
  content: "";
  position: absolute;
  top: -160px; left: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(0, 144, 212, .16);
  pointer-events: none;
}
.faixa::after {
  content: "";
  position: absolute;
  bottom: -200px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(247, 198, 35, .10);
  pointer-events: none;
}
.faixa__grid { position: relative; z-index: 1; display: grid; gap: 2rem; align-items: center; }
.faixa h2 { color: #fff; max-width: 18ch; }
.faixa__conteudo p {
  margin-top: 1rem;
  color: #D7E6F4;
  max-width: 54ch;
}
.faixa__conteudo .btn { margin-top: 1.75rem; }

.faixa__midia { justify-self: center; max-width: 320px; }
.faixa__midia img { width: 100%; }

@media (min-width: 900px) {
  .faixa__grid { grid-template-columns: 1.25fr .75fr; gap: clamp(2.5rem, 5vw, 4rem); }
  .faixa__midia { justify-self: end; max-width: 360px; }
}
/* ==========================================================================
   15. FAQ
   ========================================================================== */
.faq__lista { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }

.faq__item {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--raio-md);
  overflow: hidden;
  transition: border-color var(--transicao);
}
.faq__item[open] { border-color: var(--azul-claro); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-family: Ubuntu, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul-profundo);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--azul-escuro); }

.faq__sinal {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #EAF3FA;
  transition: background-color var(--transicao);
}
.faq__sinal::before,
.faq__sinal::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 2px;
  border-radius: 2px;
  background: var(--azul-escuro);
  transform: translate(-50%, -50%);
  transition: transform var(--transicao);
}
.faq__sinal::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__sinal { background: var(--azul-escuro); }
.faq__item[open] .faq__sinal::before,
.faq__item[open] .faq__sinal::after { background: #fff; }
.faq__item[open] .faq__sinal::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__resposta {
  padding: 0 1.25rem 1.25rem;
  color: var(--texto-secundario);
  font-size: .96rem;
}
.faq__resposta a { font-weight: 600; }

/* ==========================================================================
   16. LOCALIZAÇÃO E CONTATO
   ========================================================================== */
.contato__grid { display: grid; gap: clamp(1.75rem, 4vw, 2.75rem); }

.contato__mapa {
  border-radius: var(--raio-lg);
  overflow: hidden;
  border: 1px solid var(--borda);
  min-height: 300px;
  background: var(--fundo-alternativo);
}
.contato__mapa iframe { display: block; width: 100%; height: 100%; min-height: 300px; border: 0; }

.contato__dados { display: grid; gap: 1.15rem; }

.dado {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.dado__icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 13px;
  background: #EAF3FA;
  color: var(--azul-escuro);
}
.dado__icone svg { width: 22px; height: 22px; }
.dado h3 { font-size: 1rem; margin-bottom: .15rem; }
.dado p, .dado a { font-size: .95rem; color: var(--texto-secundario); }
.dado a { font-weight: 600; color: var(--azul-escuro); }
.dado__horario { display: grid; gap: .2rem; }
.dado__horario span { display: flex; gap: .5rem; flex-wrap: wrap; }
.dado__horario strong { color: var(--texto); font-weight: 600; min-width: 128px; }

.contato__acoes { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.contato__redes { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: .25rem; }
.contato__redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--borda);
  color: var(--azul-escuro);
  transition: transform var(--transicao), border-color var(--transicao), color var(--transicao);
}
.contato__redes a:hover { transform: translateY(-2px); border-color: var(--azul-claro); color: var(--azul-claro); }
.contato__redes svg { width: 21px; height: 21px; }

/* Link discreto para o perfil no Google — sem citar nota nem depoimento */
.contato__google {
  width: auto !important;
  height: 44px;
  gap: .5rem;
  padding-inline: 1rem;
  font-size: .89rem;
  font-weight: 600;
}
.contato__google svg { width: 17px !important; height: 17px !important; color: var(--amarelo); }

@media (min-width: 900px) {
  .contato__grid { grid-template-columns: 1.05fr .95fr; align-items: stretch; }
  .contato__mapa { min-height: 460px; }
}

/* ==========================================================================
   17. RODAPÉ
   ========================================================================== */
.rodape {
  background: var(--azul-profundo);
  color: #C9DDF0;
  padding-block: clamp(2.75rem, 5vw, 4rem) 0;
  font-size: .93rem;
}
.rodape__grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.rodape h3 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.rodape a { color: #C9DDF0; }
.rodape a:hover { color: #fff; }

.rodape__marca { display: inline-flex; align-items: center; gap: .7rem; }
/* Cápsula branca garante legibilidade do logo sobre o azul escuro */
.rodape__logo {
  width: 56px; height: 56px;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
  flex: none;
}
.rodape__marca strong {
  font-family: Ubuntu, sans-serif;
  font-size: 1.1rem;
  color: #fff;
  display: block;
  line-height: 1.15;
}
/* Apenas a linha "Centro Veterinário" (span interno) recebe caixa alta */
.rodape__marca > span > span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.rodape__sobre { margin-top: 1.1rem; max-width: 34ch; line-height: 1.6; }

.rodape__links { display: grid; gap: .6rem; }
.rodape__contato { display: grid; gap: .75rem; }
.rodape__contato p { line-height: 1.5; }
.rodape__contato strong { color: #fff; display: block; font-weight: 600; }

.rodape__redes { display: flex; gap: .6rem; }
.rodape__redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  transition: background-color var(--transicao), transform var(--transicao);
}
.rodape__redes a:hover { background: rgba(255, 255, 255, .18); transform: translateY(-2px); }
.rodape__redes svg { width: 20px; height: 20px; }

.rodape__base {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-block: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .82rem;
  color: #A9C4DD;
}
.rodape__base p { line-height: 1.5; }

@media (min-width: 700px) {
  .rodape__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (min-width: 1000px) {
  .rodape__grid { grid-template-columns: 1.5fr 1fr 1.4fr 1fr; }
  .rodape__base { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ==========================================================================
   18. BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */
.whats-flutuante {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 880;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 0;
  width: 58px; height: 58px;
  justify-content: center;
  border-radius: var(--raio-pill);
  background: var(--verde-acao);
  color: #fff;
  box-shadow: 0 8px 26px rgba(12, 124, 61, .38);
  transition: transform var(--transicao), background-color var(--transicao), box-shadow var(--transicao);
}
.whats-flutuante:hover {
  background: var(--verde-acao-hover);
  transform: translateY(-3px);
  text-decoration: none;
}
.whats-flutuante svg { width: 30px; height: 30px; flex: none; }
.whats-flutuante__texto { display: none; font-family: Ubuntu, sans-serif; font-weight: 700; font-size: .95rem; }

/* Pulso discreto: 3 repetições ao carregar, sem animação infinita */
.whats-flutuante::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--verde-whatsapp);
  animation: pulso-whats 2.4s ease-out 3;
  pointer-events: none;
}
@keyframes pulso-whats {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (min-width: 900px) {
  .whats-flutuante { width: auto; height: auto; padding: .8rem 1.35rem .8rem 1rem; }
  .whats-flutuante__texto { display: inline; }
}

/* ==========================================================================
   19. ANIMAÇÕES DE ENTRADA (REVEAL)
   Só entram em cena quando o JavaScript está ativo, para que o conteúdo
   nunca fique invisível caso o script falhe.
   ========================================================================== */
.js .revelar {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms cubic-bezier(.4, 0, .2, 1),
              transform 420ms cubic-bezier(.4, 0, .2, 1);
}
.js .revelar.esta-visivel { opacity: 1; transform: none; }
/* Escalonamento curto entre itens irmãos */
.js .revelar[data-atraso="1"] { transition-delay: 70ms; }
.js .revelar[data-atraso="2"] { transition-delay: 140ms; }

/* ==========================================================================
   20. PREFERÊNCIAS DE MOVIMENTO E IMPRESSÃO
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .revelar { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
  .estrutura__item:hover img { transform: none; }
  .js .painel-jornada { animation: none; }
}

@media print {
  .cabecalho, .whats-flutuante, .menu-lateral, .menu-fundo, .contato__mapa { display: none !important; }
  body { color: #000; }
}
