/*
 * Componentes e secoes · executa os tokens do Estudo de Caso de Direcao de Arte.
 * Autor: Eight Group · https://eightgroup.com.br/
 * Projeto Gerado pelo Prompt Mestre do Desenvolvedor e Vibe Coder Dante Testa · www.dantetesta.com.br
 */

/* ===================== Tipografia de secao ===================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--sp-4);
}
.eyebrow--light { color: var(--aqua-500); }
.eyebrow .eyebrow__pulse {
  display: inline-block; width: 28px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--aqua-500), transparent); flex: none;
}
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--text-soft); }
.section--dark .lead { color: var(--on-dark-soft); }
.section__head { max-width: 60ch; margin-bottom: var(--sp-7); }
.section__title { font-size: clamp(1.6rem, 1rem + 3vw, 2.4rem); }
.section__title--sm { font-size: clamp(1.3rem, 1rem + 1.6vw, 1.8rem); }
.section__lead { margin-top: var(--sp-3); }

/* ===================== Botoes ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-pill); border: 2px solid transparent;
  text-decoration: none; transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.btn .mm-icon { width: 20px; height: 20px; }
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--primary { background: var(--navy-900); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft), var(--ring-aqua); }
.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--mist-100); }
.btn--ghost:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn--aqua { background: var(--aqua-500); color: var(--navy-900); }
.btn--aqua:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(0, 254, 210, .5); }

/* ===================== Figure-frame (componente-assinatura) ===================== */
.figure-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); isolation: isolate; margin: 0;
}
.figure-frame__img { width: 100%; height: 100%; object-fit: cover; }
.figure-frame::after { /* scrim navy para legibilidade (R48) */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(21, 29, 61, .55) 100%);
}
.figure-frame::before { /* canto aqua (assinatura) */
  content: ""; position: absolute; left: 0; top: 0; width: 56px; height: 4px; z-index: 2;
  background: var(--aqua-500); box-shadow: 0 0 18px rgba(0, 254, 210, .6);
}
.figure-frame__badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .96); color: var(--navy-900);
  padding: 9px 14px; border-radius: var(--radius-pill); font-weight: 600; font-size: .9rem;
  box-shadow: var(--shadow-card);
}
.figure-frame__badge .mm-icon { color: var(--teal-700); width: 18px; height: 18px; }

/* ===================== Header ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-card); border-bottom-color: var(--border); }
.site-header__inner { display: flex; align-items: center; gap: var(--sp-5); min-height: 76px; }
.brand__logo { display: block; height: auto; max-width: 62vw; object-fit: contain; }
.site-nav { margin-left: auto; }
.menu { display: flex; align-items: center; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
.menu a {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--navy-900);
  text-decoration: none; padding: 6px 2px; position: relative;
}
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--aqua-500); transition: width var(--dur-1) var(--ease);
}
.menu a:hover::after, .menu .current-menu-item > a::after { width: 100%; }
.site-header__cta { padding: 11px 18px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle__bars { display: grid; gap: 5px; }
.nav-toggle__bars span { display: block; width: 26px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero { position: relative; padding-block: clamp(var(--sp-7), 6vw, var(--sp-9)); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(0, 254, 210, .10), transparent 70%),
    radial-gradient(40% 40% at 0% 100%, rgba(21, 29, 61, .05), transparent 70%);
}
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(var(--sp-6), 5vw, var(--sp-9)); align-items: center; }
.hero__title { font-size: clamp(2.4rem, 1rem + 5vw, 4rem); line-height: 1.05; letter-spacing: -.02em; margin-bottom: var(--sp-5); }
.hero__lead { max-width: 52ch; margin-bottom: var(--sp-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border); padding-top: var(--sp-5); }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; color: var(--navy-800); }
.hero__trust .mm-icon { color: var(--teal-700); width: 20px; height: 20px; }
.hero__media .figure-frame { aspect-ratio: 5 / 6; max-height: 560px; }

/* ===================== Tripe (editorial, nao 3 cards iguais) ===================== */
.tripe__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.tripe__item { position: relative; padding: var(--sp-6) var(--sp-6) var(--sp-6) 0; }
.tripe__item + .tripe__item { padding-left: var(--sp-6); border-left: 1px solid var(--border); }
.tripe__num { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: transparent; -webkit-text-stroke: 1.4px var(--aqua-600); letter-spacing: .04em; }
.tripe__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(0, 254, 210, .12); color: var(--teal-700); margin: var(--sp-4) 0 var(--sp-4); }
.tripe__icon .mm-icon { width: 26px; height: 26px; }
.tripe__title { font-size: 1.3rem; margin-bottom: var(--sp-2); }
.tripe__text { color: var(--text-soft); }

/* ===================== Como funciona (passos) ===================== */
.passos__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); list-style: none; padding: 0; margin: 0; }
.passo { position: relative; padding-top: var(--sp-3); }
.passo__num { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: transparent; -webkit-text-stroke: 1.4px var(--aqua-600); letter-spacing: .04em; }
.passo__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: rgba(0, 254, 210, .12); color: var(--teal-700); margin: var(--sp-3) 0 var(--sp-4); }
.passo__icon .mm-icon { width: 26px; height: 26px; }
.passo__title { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.passo__text { color: var(--text-soft); font-size: .96rem; }
@media (max-width: 900px) { .passos__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .passos__grid { grid-template-columns: 1fr; } }

/* ===================== Sobre ===================== */
.sobre__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: center; }
.sobre__media .figure-frame { aspect-ratio: 4 / 5; }
.sobre__text { margin: var(--sp-5) 0 var(--sp-6); color: var(--text-soft); }
.sobre__text p + p { margin-top: var(--sp-4); }

/* ===================== Servicos (1 feature + grid) ===================== */
.servicos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
/* 3 areas lado a lado, iguais: 32% cada (96%) e os 4% restantes viram os 2 respiros de 2%.
   So a partir de 1025px: abaixo disso o card fica com ~180px uteis e "Viscossuplementacao"
   (19 letras, sem ponto de quebra) nao cabe num tamanho legivel. Ali valem as quebras
   normais do fim do arquivo (2 colunas ate 768px, depois 1). */
@media (min-width: 1025px) {
  .servicos__grid--3 { grid-template-columns: repeat(3, 32%); column-gap: 0; justify-content: space-between; }
}
/* Faixa de tablet: em 2 colunas o terceiro card ficaria sozinho, com meia linha vazia do lado.
   Ele ocupa a linha inteira no formato horizontal que o tema ja usa no card de destaque. */
@media (min-width: 769px) and (max-width: 1024px) {
  .servicos__grid--3 .servico:nth-child(3) { grid-column: 1 / -1; flex-direction: row; }
  .servicos__grid--3 .servico:nth-child(3) .servico__media { aspect-ratio: auto; flex: 1.1; min-height: 240px; }
  .servicos__grid--3 .servico:nth-child(3) .servico__body { flex: 1; justify-content: center; }
}
.servico {
  display: flex; flex-direction: column; background: var(--surface-0); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.servico:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.servico__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.servico__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-2) var(--ease); }
.servico:hover .servico__media img { transform: scale(1.04); }
.servico__body { display: flex; flex-direction: column; gap: var(--sp-2); padding: var(--sp-5); flex: 1; }
.servico__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(0, 254, 210, .12); color: var(--teal-700); margin-bottom: var(--sp-2); }
/* Termo medico longo ("Viscossuplementacao") nao cabe num card estreito e nao tem onde quebrar:
   hyphens hifeniza (pt-BR no <html>) e o break-word e a rede de seguranca se o navegador nao hifenizar. */
.servico__title { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--navy-900); overflow-wrap: break-word; hyphens: auto; }
.servico__text { color: var(--text-soft); font-size: .98rem; flex: 1; }
.servico__more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; color: var(--teal-700); font-size: .92rem; margin-top: var(--sp-2); }
.servico__more .mm-icon { width: 16px; height: 16px; transition: transform var(--dur-1) var(--ease); }
.servico:hover .servico__more .mm-icon { transform: translateX(4px); }
.servico--feature { grid-column: 1 / -1; flex-direction: row; }
.servico--feature .servico__media { aspect-ratio: auto; flex: 1.1; min-height: 320px; }
.servico--feature .servico__body { flex: 1; justify-content: center; padding: var(--sp-7); }
.servico--feature .servico__title { font-size: 1.7rem; }
.servico--feature .servico__text { flex: none; font-size: 1.05rem; }

/* ===================== Condicoes ===================== */
/* Areas de atuacao: compacto dentro do Sobre, sem hover (nao e clicavel) */
.sobre__areas { margin: var(--sp-5) 0 var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--border); }
.sobre__areas-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: var(--sp-3); }
.sobre__areas-label .mm-icon { width: 18px; height: 18px; color: var(--teal-700); }
.areas-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.area-chip { font-size: .88rem; font-weight: 500; color: var(--navy-800); background: var(--surface-50); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 6px 13px; }

/* ===================== Video (dark + facade) ===================== */
.video__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: center; }
.video-facade {
  position: relative; max-width: 360px; margin-inline: auto; aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7), var(--ring-aqua);
}
.video-facade__poster { width: 100%; height: 100%; object-fit: cover; }
.video-facade__play {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; border: 0; border-radius: 50%;
  background: var(--aqua-500); color: var(--navy-900); display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(0, 254, 210, .6); transition: transform var(--dur-1) var(--ease);
}
.video-facade__play .mm-icon { width: 30px; height: 30px; margin-left: 3px; }
.video-facade:hover .video-facade__play { transform: scale(1.08); }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===================== Depoimentos ===================== */
.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.depoimento {
  display: flex; flex-direction: column; gap: var(--sp-4); margin: 0; padding: var(--sp-6);
  background: var(--surface-0); border: 1px solid var(--border); border-radius: var(--radius-lg);
  position: relative;
}
.depoimento::before { content: "\201C"; position: absolute; top: 8px; right: 22px; font-family: var(--font-head); font-size: 4rem; line-height: 1; color: rgba(0, 254, 210, .35); }
.depoimento__stars { display: inline-flex; gap: 3px; color: var(--aqua-600); }
.depoimento__stars .mm-icon { width: 18px; height: 18px; fill: currentColor; }
.depoimento__quote { font-size: 1.05rem; color: var(--navy-800); border: 0; padding: 0; margin: 0; }
.depoimento__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.depoimento__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.depoimento__name { display: block; font-family: var(--font-head); color: var(--navy-900); }
.depoimento__role { display: block; font-size: .88rem; color: var(--text-soft); }

/* ===================== Convenios + FAQ ===================== */
.convenios-faq__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: start; }
.convenios__list { display: flex; flex-wrap: wrap; gap: var(--sp-3); list-style: none; padding: 0; margin: var(--sp-5) 0 0; }
.convenio { display: inline-flex; align-items: center; padding: 12px 18px; background: var(--surface-50); border: 1px solid var(--border); border-radius: 12px; font-weight: 600; color: var(--navy-800); }
.convenio img { max-height: 38px; width: auto; filter: grayscale(1); opacity: .8; transition: filter var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease); }
.convenio:hover img { filter: none; opacity: 1; }
.faq__list { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.faq__item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface-0); overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); cursor: pointer; padding: var(--sp-4) var(--sp-5); font-family: var(--font-head); font-weight: 600; color: var(--navy-900); list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron { color: var(--teal-700); transition: transform var(--dur-1) var(--ease); flex: none; }
.faq__item[open] .faq__chevron { transform: rotate(45deg); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); color: var(--text-soft); }

/* ===================== Chamada final (Fale com a gente + mapa) ===================== */
.final-cta { background: linear-gradient(135deg, var(--surface-50) 0%, #E4FAF4 100%); }
.final-cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: stretch; }
.final-cta__content { align-self: start; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin: var(--sp-6) 0; }
.final-cta__info { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
.final-cta__info > li { display: flex; align-items: flex-start; gap: 10px; color: var(--navy-800); }
.final-cta__info .mm-icon { color: var(--teal-700); flex: none; margin-top: 2px; width: 20px; height: 20px; }
.final-cta__hour span { display: flex; flex-direction: column; line-height: 1.35; }
.final-cta__hour strong { color: var(--navy-900); }
.final-cta__map { position: relative; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border); background: var(--mist-100); }
.final-cta__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Unidades de atendimento · o card selecionado manda no mapa ao lado.
   O mapa acompanha a altura da coluna (align-items: stretch), sem sobra embaixo. */
.locais { margin-top: var(--sp-6); }
.locais__label { display: flex; align-items: center; gap: 8px; margin: 0 0 var(--sp-3); font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-700); }
.locais__label .mm-icon { width: 18px; height: 18px; }
.locais__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.local { position: relative; overflow: hidden; background: var(--surface-0); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease); }
.local:hover { border-color: var(--aqua-600); }
.local.is-active { border-color: var(--teal-700); box-shadow: var(--shadow-soft); }
/* Traco aqua no card ativo · mesma familia do pulso de regeneracao. */
.local.is-active::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--aqua-500); }
.local__pick { display: block; width: 100%; padding: var(--sp-4) var(--sp-4) 6px; border: 0; background: none; font: inherit; text-align: left; cursor: pointer; }
.local__nome { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.local__addr { display: block; margin-top: 2px; font-size: .9rem; line-height: 1.45; color: var(--slate-600); }
.local__link { display: inline-flex; align-items: center; gap: 6px; padding: 0 var(--sp-4) var(--sp-4); font-size: .85rem; font-weight: 600; color: var(--teal-700); text-decoration: none; }
.local__link .mm-icon { width: 16px; height: 16px; transition: transform var(--dur-1) var(--ease); }
.local__link:hover .mm-icon { transform: translateX(3px); }

/* ===================== Formulario (shortcode [mm_contact_form]) ===================== */
.mm-contact { background: var(--surface-0); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(var(--sp-5), 4vw, var(--sp-7)); box-shadow: var(--shadow-soft); display: grid; gap: var(--sp-4); }
.mm-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.mm-contact__field { display: grid; gap: 6px; }
.mm-contact__field > span { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy-900); }
.mm-contact input, .mm-contact textarea { width: 100%; border: 1px solid var(--mist-100); border-radius: 10px; padding: 12px 14px; font: inherit; background: var(--surface-50); transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease); }
.mm-contact input:focus, .mm-contact textarea:focus { outline: 0; border-color: var(--aqua-600); box-shadow: 0 0 0 3px rgba(0, 201, 167, .18); background: #fff; }
.mm-contact textarea { resize: vertical; }
.mm-contact__consent { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-soft); }
.mm-contact__consent input { margin-top: 3px; }
.mm-contact__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mm-contact__msg { padding: 12px 16px; border-radius: 10px; font-weight: 600; }
.mm-contact__msg--ok { background: rgba(27, 156, 107, .12); color: var(--success); }
.mm-contact__msg--err { background: rgba(214, 69, 69, .1); color: var(--error); }

/* ===================== Footer ===================== */
.site-footer { padding-block: var(--sp-8) var(--sp-6); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr .8fr; gap: var(--sp-7); padding-bottom: var(--sp-7); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.site-footer__logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.site-footer__tagline { color: var(--aqua-500); font-family: var(--font-head); font-weight: 600; margin-top: var(--sp-3); }
.site-footer__title { font-size: 1.05rem; color: #fff; margin-bottom: var(--sp-4); }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.site-footer__list a, .site-footer__addr { display: inline-flex; align-items: center; gap: 10px; color: var(--on-dark-soft); text-decoration: none; }
/* Unidades: nome + endereco curto, empilhados, com o pin alinhado no topo. */
.site-footer__unidade-item a { align-items: flex-start; }
.site-footer__unidade-item .mm-icon { margin-top: 3px; }
.site-footer__unidade { display: flex; flex-direction: column; gap: 1px; line-height: 1.4; }
.site-footer__unidade-nome { color: #fff; font-weight: 600; font-size: .95rem; }
.site-footer__unidade-addr { font-size: .85rem; }
.site-footer__list a:hover { color: var(--aqua-500); }
.site-footer__list .mm-icon { color: var(--aqua-500); width: 18px; height: 18px; flex: none; }
.site-footer__hour { display: flex; flex-direction: column; gap: 1px; color: var(--on-dark-soft); }
.site-footer__day { font-size: .92rem; }
.site-footer__time { color: #fff; font-weight: 600; }
.site-footer .social-list { display: flex; gap: 10px; list-style: none; padding: 0; margin: var(--sp-4) 0 0; }
.site-footer .social-list a { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; transition: background var(--dur-1) var(--ease); }
.site-footer .social-list a:hover { background: var(--aqua-500); color: var(--navy-900); }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3); padding-top: var(--sp-5); color: var(--on-dark-soft); font-size: .9rem; }
.site-footer__credit a { color: var(--aqua-500); }

/* ===================== WhatsApp float ===================== */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--aqua-500);
  box-shadow: 0 12px 30px -8px rgba(21, 29, 61, .5), var(--ring-aqua); transition: transform var(--dur-1) var(--ease);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }
.whatsapp-float .mm-icon { width: 28px; height: 28px; }

/* ===================== Reveal (gated atras de .js · memoria design.md) ===================== */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease); }

/* ===================== Blog basico ===================== */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--sp-6); }
.post-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-0); }
.post-card__body { padding: var(--sp-5); }
.post-card__title { font-size: 1.2rem; margin-bottom: var(--sp-2); }
.post-card__title a { color: var(--navy-900); text-decoration: none; }

/* ===================== Responsivo ===================== */
@media (max-width: 1024px) {
  .hero__inner, .sobre__inner, .video__inner, .convenios-faq__inner, .final-cta__inner { grid-template-columns: 1fr; }
  .servicos__grid, .depoimentos__grid { grid-template-columns: repeat(2, 1fr); }
  .servico--feature { flex-direction: column; }
  .servico--feature .servico__media { min-height: 240px; }
  .sobre__media { order: -1; }
}
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .site-header__cta { display: none; }
  .site-nav { margin-left: auto; }
  .site-nav .menu {
    position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow-soft);
    padding: var(--sp-3); max-height: 0; overflow: hidden; visibility: hidden; transition: max-height var(--dur-2) var(--ease);
  }
  .site-nav.is-open .menu { max-height: 80vh; visibility: visible; }
  .site-nav .menu a { padding: 14px 12px; border-bottom: 1px solid var(--border); }
  .site-nav .menu a::after { display: none; }
  .tripe__grid { grid-template-columns: 1fr; }
  .tripe__item + .tripe__item { border-left: 0; border-top: 1px solid var(--border); padding-left: 0; }
  .servicos__grid, .depoimentos__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .mm-contact__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; }
}

/* ===================== Single de serviço (ancorado na pesquisa R85) ===================== */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: var(--on-dark); padding-block: clamp(var(--sp-7), 6vw, var(--sp-9)); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 80% at 100% 0%, rgba(0, 254, 210, .14), transparent 60%); }
.page-hero__inner { position: relative; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); padding: 8px 16px; border-radius: var(--radius-pill); font-size: .9rem; margin-bottom: var(--sp-5); }
.breadcrumb a { color: var(--on-dark-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--aqua-500); }
.breadcrumb > span { color: #fff; font-weight: 600; }
.breadcrumb .mm-icon { width: 15px; height: 15px; color: var(--aqua-500); }
.page-hero__title { color: #fff; font-size: clamp(2rem, 1rem + 4vw, 3.2rem); display: flex; align-items: center; gap: var(--sp-4); }
.page-hero__icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: rgba(0, 254, 210, .15); color: var(--aqua-500); flex: none; }
.page-hero__icon .mm-icon { width: 30px; height: 30px; }

.single-servico__wrap { max-width: 820px; }
.single-servico__media { margin: 0 0 var(--sp-6); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.single-servico__img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10; object-fit: cover; }
.single-servico__content .lead { font-size: var(--fs-lead); color: var(--navy-800); margin-bottom: var(--sp-5); font-weight: 500; }
.rich-text > * + * { margin-top: var(--sp-4); }
.rich-text h2 { font-size: 1.5rem; margin-top: var(--sp-6); }
.rich-text h3 { font-size: 1.25rem; margin-top: var(--sp-5); }
.rich-text p { color: var(--text-soft); }
.rich-text ul, .rich-text ol { color: var(--text-soft); padding-left: 1.2em; }
.rich-text a { color: var(--teal-700); }

.single-servico__benefits { margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid var(--border); }
.single-servico__h2 { font-size: 1.5rem; margin-bottom: var(--sp-5); }
.benefits-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3) var(--sp-5); }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--navy-800); font-weight: 500; }
.benefits-list .mm-icon { width: 22px; height: 22px; color: var(--success); flex: none; margin-top: 1px; }

.outros-servicos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.outros-servicos__grid--2 { grid-template-columns: repeat(2, 1fr); }

.single-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: var(--on-dark); padding-block: clamp(var(--sp-7), 6vw, var(--sp-8)); }
.single-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 0% 100%, rgba(0, 254, 210, .16), transparent 60%); }
.single-cta__inner { position: relative; display: grid; grid-template-columns: 1.3fr .9fr; gap: var(--sp-6); align-items: center; }
.single-cta__title { color: #fff; font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem); margin-top: var(--sp-2); }
.single-cta__lead { color: var(--on-dark-soft); margin-top: var(--sp-3); }
.single-cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn--ghost-light:hover { border-color: #fff; transform: translateY(-2px); }

@media (max-width: 768px) {
  .benefits-list { grid-template-columns: 1fr; }
  .outros-servicos__grid { grid-template-columns: 1fr; }
  .single-cta__inner { grid-template-columns: 1fr; }
}
