/* ==========================================================================
   Sistema de design do site.
   As cores, fontes, raio e largura vêm do painel (injetados como variáveis CSS
   no <head>), então nunca escreva um valor de cor fixo aqui — use var(--...).
   Layout mobile-first: o padrão é uma coluna, e os breakpoints só ampliam.
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--fonte-corpo);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--cor-texto);
  background: var(--cor-fundo);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--fonte-titulo); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); }
p  { margin: 0 0 1em; }
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--cor-primaria); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.2em; }
hr.divisor { border: 0; border-top: 1px solid rgba(0,0,0,.1); }

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

.pular { position: absolute; left: -9999px; }
.pular:focus { left: 1rem; top: 1rem; z-index: 999; background: #fff; padding: .75rem 1rem; border-radius: 8px; }

.container { width: 100%; max-width: var(--largura); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.container--estreito { max-width: 760px; }
.centro { text-align: center; }

/* ---------------------------------------------------------------- seções */
.secao { position: relative; background-size: cover; background-position: center; }
.espaco-normal   { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.espaco-compacto { padding: clamp(1.75rem, 4vw, 3rem) 0; }
.espaco-amplo    { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.espaco-nenhum   { padding: 0; }

.fundo-claro     { background-color: var(--cor-fundo); }
.fundo-alt       { background-color: var(--cor-fundo-alt); }
.fundo-escuro    { background-color: var(--cor-escuro); color: #fff; }
.fundo-primaria  { background-color: var(--cor-primaria); color: #fff; }
.fundo-escuro a:not(.botao), .fundo-primaria a:not(.botao) { color: #fff; text-decoration: underline; }
.fundo-imagem    { color: #fff; }
.fundo-imagem::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65));
}
.fundo-imagem > .container { position: relative; z-index: 1; }

.secao__cabecalho { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.secao__cabecalho h2 { margin-bottom: .35em; }
.secao__sub { opacity: .78; font-size: 1.05em; margin: 0; }

/* ---------------------------------------------------------------- botões */
.botoes { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.botoes--centro { justify-content: center; }

.botao {
  --btn-bg: var(--cor-primaria);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem;
  border: 2px solid transparent; border-radius: calc(var(--raio) * .7);
  font: inherit; font-weight: 600; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  min-height: 48px; /* alvo de toque confortável no celular */
}
.botao:hover { text-decoration: none; transform: translateY(-2px); }
.botao--primario { background: var(--btn-bg); color: #fff; box-shadow: 0 6px 20px -8px var(--btn-bg); }
.botao--primario:hover { background: var(--cor-primaria-escura); }
.botao--secundario { background: transparent; color: currentColor; border-color: currentColor; }
.botao--secundario:hover { background: rgba(127,127,127,.12); }
.botao--texto { padding-left: 0; padding-right: 0; color: var(--cor-primaria); }
.botao--texto::after { content: "→"; }

/* ---------------------------------------------------------------- topo */
.topo {
  position: sticky; top: 0; z-index: 50;
  /* Fallback opaco primeiro: em navegador sem color-mix a regra seguinte é
     ignorada e o topo continua legível em vez de ficar transparente. */
  background: var(--cor-fundo);
  background: color-mix(in srgb, var(--cor-fundo) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.topo__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.topo__logo { display: flex; align-items: center; font-family: var(--fonte-titulo); font-weight: 800; font-size: 1.15rem; color: var(--cor-secundaria); }
.topo__logo img { max-height: 46px; width: auto; }
.topo__logo:hover { text-decoration: none; }

.topo__menu-btn {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 10px;
  background: none; border: 0; cursor: pointer;
}
.topo__menu-btn span { display: block; height: 2px; background: var(--cor-secundaria); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.topo__menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topo__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topo__menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.topo__nav {
  position: fixed; inset: 72px 0 auto 0;
  display: none; flex-direction: column; gap: .5rem;
  padding: 1rem clamp(1rem, 4vw, 2rem) 2rem;
  background: var(--cor-fundo);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,.4);
  max-height: calc(100dvh - 72px); overflow-y: auto;
}
.topo__nav.aberto { display: flex; }
.topo__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.topo__nav > ul > li > a { display: block; padding: .85rem .25rem; font-weight: 600; color: var(--cor-secundaria); border-bottom: 1px solid rgba(0,0,0,.06); }
.submenu { padding-left: 1rem; }
.submenu a { display: block; padding: .6rem .25rem; opacity: .85; }
.topo__cta { margin-top: 1rem; }

@media (min-width: 900px) {
  .topo__menu-btn { display: none; }
  .topo__nav {
    position: static; display: flex; flex-direction: row; align-items: center; gap: 1.75rem;
    padding: 0; background: none; border: 0; box-shadow: none; max-height: none; overflow: visible;
  }
  .topo__nav ul { flex-direction: row; align-items: center; gap: 1.5rem; }
  .topo__nav > ul > li > a { padding: .5rem 0; border: 0; }
  .topo__nav > ul > li { position: relative; }
  .submenu {
    position: absolute; top: 100%; left: -1rem; min-width: 220px;
    display: none; flex-direction: column; padding: .5rem;
    background: var(--cor-fundo); border-radius: var(--raio);
    box-shadow: 0 18px 40px -18px rgba(0,0,0,.35); border: 1px solid rgba(0,0,0,.07);
  }
  .tem-filhos:hover .submenu, .tem-filhos:focus-within .submenu { display: flex; }
  .topo__cta { margin-top: 0; }
}

/* ---------------------------------------------------------------- hero */
.hero { display: grid; gap: 2.5rem; align-items: center; background-size: cover; background-position: center; }
.hero--com-imagem { padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem); border-radius: var(--raio); color: #fff; position: relative; isolation: isolate; }
.hero--com-imagem::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.66)); }
.hero--centro .hero__texto { text-align: center; margin: 0 auto; max-width: 780px; }
.hero--centro .botoes { justify-content: center; }
.hero--cheia { min-height: min(82vh, 780px); align-content: center; }
.hero--compacta { min-height: 0; }
.hero__sobre { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--cor-primaria); margin-bottom: .75rem; }
.hero--com-imagem .hero__sobre { color: #fff; opacity: .9; }
.hero h1 { margin-bottom: .4em; }
.hero__sub { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); opacity: .88; max-width: 60ch; }
.hero--centro .hero__sub { margin-left: auto; margin-right: auto; }
.hero__imagem img { border-radius: var(--raio); box-shadow: 0 30px 60px -30px rgba(0,0,0,.45); width: 100%; }
@media (min-width: 900px) {
  .hero--duplo { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; }
  .hero--duplo .hero__texto { text-align: left; margin: 0; }
  .hero--duplo .botoes { justify-content: flex-start; }
}

/* ---------------------------------------------------------------- grades */
.grade { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grade--2, .grade--3, .grade--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grade--3 { grid-template-columns: repeat(3, 1fr); }
  .grade--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  display: block; padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--cor-fundo); color: inherit;
  border: 1px solid rgba(0,0,0,.08); border-radius: var(--raio);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(0,0,0,.45); border-color: var(--cor-primaria); text-decoration: none; }
.card h2, .card h3 { margin-bottom: .4em; }
.card p { margin: 0; opacity: .82; }
.card__icone { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; margin-bottom: 1rem; font-size: 1.6rem; border-radius: 14px; background: rgba(127,127,127,.12); background: color-mix(in srgb, var(--cor-primaria) 12%, transparent); }
.card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: calc(var(--raio) * .7); margin-bottom: 1.1rem; }
.fundo-escuro .card, .fundo-primaria .card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }

/* ------------------------------------------------------- texto + imagem */
.texto-img { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.texto-img .botoes { margin-bottom: 0; }
.texto-img__img img { width: 100%; border-radius: var(--raio); box-shadow: 0 28px 56px -32px rgba(0,0,0,.5); }
@media (min-width: 900px) {
  .texto-img--direita, .texto-img--esquerda { grid-template-columns: 1fr 1fr; }
  .texto-img--esquerda .texto-img__texto { order: 2; }
}
.conteudo > :last-child { margin-bottom: 0; }
.conteudo img { border-radius: calc(var(--raio) * .6); margin: 1rem 0; }
.conteudo blockquote { margin: 1.5rem 0; padding-left: 1.25rem; border-left: 4px solid var(--cor-primaria); font-style: italic; }
.conteudo table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.conteudo th, .conteudo td { padding: .6rem .75rem; border: 1px solid rgba(0,0,0,.12); text-align: left; }

/* ---------------------------------------------------------------- números */
.numeros { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); text-align: center; }
@media (min-width: 820px) { .numeros { grid-template-columns: repeat(var(--colunas, 4), 1fr); } }
.numeros__valor { display: block; font-family: var(--fonte-titulo); font-size: clamp(2.2rem, 1.4rem + 3vw, 3.4rem); line-height: 1; color: var(--cor-primaria); }
.fundo-escuro .numeros__valor, .fundo-primaria .numeros__valor, .fundo-imagem .numeros__valor { color: #fff; }
.numeros__rotulo { display: block; margin-top: .5rem; opacity: .8; font-size: .95rem; }

/* ---------------------------------------------------------------- galeria */
.galeria { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 980px) {
  .galeria.grade--3 { grid-template-columns: repeat(3, 1fr); }
  .galeria.grade--4 { grid-template-columns: repeat(4, 1fr); }
}
.galeria__item { overflow: hidden; border-radius: var(--raio); }
.galeria__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s ease; }
.galeria__item:hover img { transform: scale(1.06); }

.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); }
.logos img { max-height: 46px; width: auto; filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s; }
.logos img:hover { filter: none; opacity: 1; }

/* ------------------------------------------------------------ depoimentos */
.depoimentos { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .depoimentos { grid-template-columns: repeat(3, 1fr); } }
.depoimento { margin: 0; padding: clamp(1.4rem, 3vw, 2rem); background: var(--cor-fundo); border: 1px solid rgba(0,0,0,.08); border-radius: var(--raio); }
.fundo-alt .depoimento { background: #fff; }
.depoimento blockquote { margin: 0 0 1.25rem; font-size: 1.02rem; }
.depoimento blockquote::before { content: "“"; font-size: 2.5rem; line-height: 0; vertical-align: -.35em; color: var(--cor-primaria); margin-right: .1em; }
.depoimento figcaption { display: flex; align-items: center; gap: .75rem; }
.depoimento figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.depoimento figcaption strong { display: block; }
.depoimento figcaption small { opacity: .7; }
.estrelas { color: #f5a623; letter-spacing: .12em; margin-bottom: .75rem; }

/* ---------------------------------------------------------------- planos */
.plano { position: relative; display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--cor-fundo); border: 1px solid rgba(0,0,0,.1); border-radius: var(--raio); }
.plano--destaque { border-color: var(--cor-primaria); border-width: 2px; box-shadow: 0 26px 50px -30px var(--cor-primaria); }
.plano__selo { position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%); padding: .3rem .9rem; font-size: .75rem; font-weight: 700; color: #fff; background: var(--cor-primaria); border-radius: 999px; white-space: nowrap; }
.plano__preco { font-family: var(--fonte-titulo); font-size: 2.2rem; font-weight: 800; margin: .25em 0 1em; }
.plano__preco small { font-size: .95rem; font-weight: 500; opacity: .65; }
.plano__itens { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.plano__itens li { padding: .45rem 0 .45rem 1.6rem; position: relative; border-bottom: 1px solid rgba(0,0,0,.06); }
.plano__itens li::before { content: "✓"; position: absolute; left: 0; color: var(--cor-primaria); font-weight: 700; }

/* ---------------------------------------------------------------- pessoa */
.pessoa { text-align: center; color: inherit; }
.pessoa__foto { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--raio); margin-bottom: 1rem; }
.pessoa__cargo { color: var(--cor-primaria); font-weight: 600; margin-bottom: .5rem; }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border: 1px solid rgba(0,0,0,.1); border-radius: var(--raio); margin-bottom: .75rem; background: var(--cor-fundo); }
.faq__item summary { padding: 1.1rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--cor-primaria); }
.faq__item[open] summary::after { content: "−"; }
.faq__item .conteudo { padding: 0 1.25rem 1.25rem; }

/* ---------------------------------------------------------------- CTA */
.cta { text-align: center; max-width: 720px; margin: 0 auto; }
.cta .botoes { justify-content: center; }
.fundo-primaria .botao--primario { background: #fff; color: var(--cor-primaria); box-shadow: none; }

/* ---------------------------------------------------------------- vídeo */
.video__embed { position: relative; padding-top: 56.25%; border-radius: var(--raio); overflow: hidden; }
.video__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video video { width: 100%; border-radius: var(--raio); }

/* ------------------------------------------------------- contato / forms */
.contato { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
@media (min-width: 900px) { .contato--duplo { grid-template-columns: 1.15fr .85fr; } }
.form__campo { margin-bottom: 1rem; }
.form__campo label { display: block; margin-bottom: .35rem; font-weight: 600; font-size: .92rem; }
.form__campo .req { color: #d33; }
.form input[type=text], .form input[type=email], .form input[type=tel], .form select, .form textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; color: inherit;
  background: var(--cor-fundo); border: 1px solid rgba(0,0,0,.18);
  border-radius: calc(var(--raio) * .55); min-height: 48px;
}
.form textarea { resize: vertical; }
.form :is(input, select, textarea):focus { border-color: var(--cor-primaria); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--cor-primaria) 25%, transparent); }
.hp { position: absolute; left: -9999px; }
.aviso { padding: .9rem 1.1rem; border-radius: calc(var(--raio) * .55); margin-bottom: 1rem; }
.aviso--ok { background: #e7f6ec; color: #145c2e; border: 1px solid #b7e0c5; }
.aviso--erro { background: #fdecec; color: #8c1c1c; border: 1px solid #f2b8b8; }
.lista-contato { list-style: none; padding: 0; margin: 0; }
.lista-contato li { display: flex; gap: .6rem; padding: .5rem 0; align-items: flex-start; }
.mapa { margin-top: 1.5rem; border-radius: var(--raio); overflow: hidden; }
.mapa iframe { width: 100%; height: 280px; border: 0; }

/* ---------------------------------------------------------------- rodapé */
.rodape { background: var(--cor-escuro); color: rgba(255,255,255,.82); margin-top: auto; }
.rodape a { color: rgba(255,255,255,.82); }
.rodape a:hover { color: #fff; }
.rodape__inner { display: grid; gap: 2.5rem; padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: 2.5rem; }
@media (min-width: 820px) { .rodape__inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.rodape h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.rodape ul { list-style: none; padding: 0; margin: 0; }
.rodape li { padding: .35rem 0; }
.rodape__logo { display: block; max-height: 52px; width: auto; margin-bottom: 1rem; color: #fff; font-size: 1.25rem; }
.redes { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: .9rem; }
.rodape__base { border-top: 1px solid rgba(255,255,255,.12); padding: 1.25rem 0; font-size: .85rem; }
.rodape__base .container { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.rodape__base p { margin: 0; }

/* ---------------------------------------------------------------- extras */
.zap {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  display: grid; place-items: center; width: 56px; height: 56px;
  background: #25d366; color: #fff; border-radius: 50%;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,.9);
}
.zap:hover { transform: scale(1.06); }
.migalhas { font-size: .85rem; opacity: .7; margin-bottom: 1rem; }
.erro-codigo { font-family: var(--fonte-titulo); font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; line-height: 1; color: var(--cor-primaria); margin: 0; }
.campo-publico { margin-bottom: 1.75rem; }
.campo-publico img { border-radius: var(--raio); }

/* Lightbox mínimo (assets/js/site.js) */
.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 2rem; background: rgba(0,0,0,.88); }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; border-radius: 8px; }
.lightbox button { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; font-size: 1.5rem; color: #fff; background: rgba(255,255,255,.15); border: 0; border-radius: 50%; cursor: pointer; }

/* Revelação suave ao rolar. Sem JS ou com movimento reduzido, tudo aparece. */
.revelar { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.revelar.visivel { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .revelar { opacity: 1; transform: none; } }

@media print {
  .topo, .rodape, .zap, .botoes { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ==========================================================================
   Ajustes da marca Armarinhos Rio Preto.
   A segunda cor da marca (o rosa do logo) entra só como detalhe: traço sob os
   títulos, ícones dos cards e realce no menu. Tudo por variável — trocar as
   cores no painel continua trocando o site inteiro.
   ========================================================================== */

/* Traço curto na cor de destaque sob o título de cada seção. */
.secao__cabecalho h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: .7em auto 0;
  border-radius: 4px;
  background: var(--cor-destaque);
}
.fundo-escuro .secao__cabecalho h2::after,
.fundo-primaria .secao__cabecalho h2::after { background: #fff; opacity: .75; }

/* Hero: sobre-título na cor de destaque, imagem sem sombra pesada — a
   ilustração é clara e a sombra forte a fazia parecer recortada.
   O rosa puro da marca dá só 3,8:1 sobre fundo claro, abaixo do mínimo de
   4,5:1 exigido para texto pequeno. Escurecemos o tom para leitura sem perder
   a cor; a primeira declaração é o que vale em navegador sem color-mix. */
.hero__sobre { color: var(--cor-secundaria); }
@supports (color: color-mix(in srgb, red 50%, black)) {
  .hero__sobre { color: color-mix(in srgb, var(--cor-destaque) 76%, #000); }
}
.hero--com-imagem .hero__sobre,
.fundo-escuro .hero__sobre,
.fundo-primaria .hero__sobre { color: #fff; opacity: .92; }
.hero--duplo .hero__imagem img { box-shadow: 0 24px 48px -32px rgba(0,0,0,.35); }

/* Ícones dos cards no tom de destaque, para o site não ficar só azul. */
.card__icone { background: color-mix(in srgb, var(--cor-destaque) 14%, transparent); }

/* Card que é link ganha realce ao passar o mouse — usado nos números de
   WhatsApp e nos itens de coleção. */
a.card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
a.card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--cor-primaria) 45%, transparent);
  box-shadow: 0 18px 36px -24px rgba(0,0,0,.45);
  text-decoration: none;
}
/* Em seção escura o CSS base sublinha todo link, o que faz o card inteiro
   parecer uma lista de links. O card já se anuncia clicável pela borda e
   pelo hover, então aqui o sublinhado sai. */
.fundo-escuro a.card, .fundo-primaria a.card,
.fundo-escuro a.card:hover, .fundo-primaria a.card:hover { text-decoration: none; }
.fundo-escuro a.card:hover { border-color: rgba(255,255,255,.45); }
.fundo-escuro a.card:hover h3, .fundo-primaria a.card:hover h3 { text-decoration: underline; }

/* Cards de WhatsApp: o número é o protagonista, então cresce e não quebra. */
.secao--servicos .card h3 { font-variant-numeric: tabular-nums; }

/* Menu: item ativo e hover com o traço da marca. */
@media (min-width: 900px) {
  .topo__nav > ul > li > a { position: relative; }
  .topo__nav > ul > li > a::after {
    content: "";
    position: absolute;
    left: .25rem; right: .25rem; bottom: .35rem;
    height: 2px;
    border-radius: 2px;
    background: var(--cor-destaque);
    transform: scaleX(0);
    transition: transform .2s ease;
  }
  .topo__nav > ul > li > a:hover::after { transform: scaleX(1); }
  .topo__nav > ul > li > a:hover { text-decoration: none; }
}

/* Estado vazio das páginas de coleção (catálogo ainda sem itens). */
.vazio { max-width: 560px; margin: 0 auto; opacity: .9; }

/* Botão flutuante do WhatsApp: alvo de toque confortável e fora da área do
   polegar nos aparelhos com barra de gestos. */
.zap { width: 60px; height: 60px; bottom: max(1rem, env(safe-area-inset-bottom)); }
