/* =========================================================
   eMini | Site real (padrão Kestriah)
   Componentes que faltavam no design-system: accordion (FAQ),
   etapas/timeline, números/contadores, depoimentos, formatos,
   cards de "para quem", cards de contato, footer estendido.
   Usa os tokens de assets/css/base.css (prefixo em-).
   ========================================================= */

/* ---------- Ícones inline (line icons, herdam currentColor) ---------- */
.em-icon{ width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* Logos solidos de marca (WhatsApp, Instagram, Facebook etc.): o <path> ja
   vem com fill="currentColor" stroke="none" (traçado oficial, mesmo SVG
   canonico de Tecnologia/Renan/Projetos Offline/Assets/4_iconografia/
   redes-sociais/whatsapp.svg), mas atributo de apresentacao no filho perde
   para CSS herdado do pai: o .em-icon generico (pensado pra icones de linha
   tipo Lucide) forcava fill:none/stroke:currentColor, e o desenho solido da
   marca virava so o contorno fino do path, um rabisco irreconhecivel em vez
   do logo. Esta modificadora restaura o preenchimento solido oficial. */
.em-icon--brand{ fill: currentColor !important; stroke: none !important; }

/* ---------- Kicker de origem/tagline sobre o hero ---------- */
.em-hero__kicker{
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--em-font-display);
  font-weight: 700; font-size: 1rem;
  color: var(--em-pink-700);
  margin-bottom: .6em;
}

/* ---------- Para quem (autor + 3 cards) ---------- */
/* Coluna esquerda mais larga (era .95fr, o titulo empilhava em 5-6
   linhas de 1-2 palavras): agora o titulo/paragrafo ganham mais
   espaco horizontal antes de quebrar linha. */
.em-about{
  display: grid;
  grid-template-columns: minmax(520px, 1.35fr) minmax(340px, 0.95fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
  padding-bottom: clamp(28px, 4vw, 48px);
}
@media (max-width: 960px){ .em-about{ grid-template-columns: 1fr; } }
#para-quem.em-section{ padding-bottom: clamp(48px, 6vw, 80px); }

.em-about__topics{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .5rem;
  list-style: none; margin: 1.15rem 0 0; padding: 0;
}
.em-about__topics li{
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; color: var(--em-navy-900);
  font-size: 1.02rem;
}
.em-about__topics li::before{
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--em-pink); flex-shrink: 0;
}

.em-about__side{
  display: flex; flex-direction: column; align-items: stretch;
  gap: 1.15rem;
}

/* Destaque de marca inline no corpo do texto (ex.: "o eMini") */
.em-text-accent{ color: var(--em-pink); }

.em-about__author-row{
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1.2rem; margin-top: 1.8rem;
}

/* Card do fundador: faixa inteira da secao, CTA de WhatsApp a direita. */
.em-founder-card{
  display: flex; align-items: center; gap: 1.25rem;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: .35rem;
  background: var(--em-white);
  border: 1px solid var(--em-border);
  border-left: 5px solid var(--em-pink);
  border-radius: var(--em-radius-lg);
  padding: 1.15rem 1.6rem 1.15rem 1.15rem;
  box-shadow: var(--em-shadow-lg, 0 18px 40px rgba(17, 24, 39, .12));
}
.em-founder-card__info{ flex: 1 1 auto; min-width: 0; }
.em-founder-card__cta{ flex-shrink: 0; margin-left: auto; }
@media (max-width: 700px){
  .em-founder-card{ flex-wrap: wrap; }
  .em-founder-card__cta{ width: 100%; margin-left: 0; justify-content: center; }
}
.em-founder-card__avatar{
  flex-shrink: 0;
  width: 92px; height: 92px; border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--em-teal), var(--em-blue));
}
.em-founder-card__avatar img{
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  display: block; border: 3px solid var(--em-white);
}
.em-founder-card__info{ display: flex; flex-direction: column; }
.em-founder-card__tag{
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  color: var(--em-teal-600); margin-bottom: .3em;
}
.em-founder-card__tag::before{ content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--em-pink); flex-shrink: 0; }
.em-founder-card__info strong{ display: block; font-size: 1.35rem; color: var(--em-navy-900); }
.em-founder-card__role{ font-size: .92rem; color: var(--em-pink-700); font-weight: 600; }
.em-author-card__social{ display: flex; gap: .4rem; margin-top: .35em; }
.em-author-card__social a{
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--em-cream); display: inline-flex; align-items: center; justify-content: center;
  color: var(--em-navy-700); transition: background var(--em-fast) var(--em-ease), color var(--em-fast) var(--em-ease);
}
.em-author-card__social a:hover{ background: var(--em-pink); color: var(--em-white); }
.em-author-card__social .em-icon{ width: 14px; height: 14px; }

/* Botão teal (accent secundário do padrão Kestriah), usado no CTA
   "Implementar" ao lado do bloco de autor, como na referência real. */
.em-btn--teal{ --em-btn-bg: var(--em-teal); --em-btn-fg: var(--em-white); box-shadow: 0 16px 34px rgba(0,164,156,.28); }
.em-btn--teal:hover{ background: var(--em-teal-600); transform: translateY(-3px); }
.em-btn--teal:active{ transform: translateY(-1px) scale(.98); }

.em-about__cards{ display: grid; gap: 1.2rem; }

/* ---------- Para quem: cards empilhados + secao fixa no scroll ----------
   Cascata em descanso: a 1a caixa na frente e as outras 2 espiando atras
   (leque). No scroll, o pin troca quem esta na frente. Desktop >=992px. */
@media (min-width: 992px){
  #para-quem.em-section{ overflow: visible; }
  .em-about-pin-track{ position: relative; }
  .em-about__cards{
    position: relative;
    min-height: 420px;
    padding: 6px 40px 72px 12px;
  }
  .em-about__cards .em-card--about{
    position: absolute;
    top: 0; left: 12px; right: 40px;
    will-change: transform, opacity, filter;
    transform-origin: center bottom;
    box-shadow: 0 18px 40px rgba(17,17,17,.28);
  }
  .em-about__cards .em-card--about:nth-child(1){ z-index: 3; }
  .em-about__cards .em-card--about:nth-child(2){
    z-index: 2;
    transform: translate(20px, 24px) rotate(2.4deg) scale(.95);
    filter: brightness(1.16);
  }
  .em-about__cards .em-card--about:nth-child(3){
    z-index: 1;
    transform: translate(40px, 48px) rotate(4.8deg) scale(.90);
    filter: brightness(1.32);
  }
  .em-about__cards .em-card--about:hover{
    box-shadow: 0 18px 40px rgba(17,17,17,.28);
  }
}

/* Cards escuros de alto contraste (Síndico / Administradoras / Condôminos),
   no padrão da referência real: fundo quase preto, ícone ciano grande sem
   badge, texto centralizado. */
.em-card--about{
  text-align: center;
  padding: clamp(28px, 3vw, 38px) clamp(24px, 3vw, 40px);
  background: linear-gradient(165deg, #2d3339 0%, #12161a 100%);
  border-color: rgba(245,243,233,.08);
}
.em-card--about .em-card__icon{
  width: auto; height: auto; background: none; margin: 0 auto .7em;
}
.em-card--about .em-card__icon .em-icon{
  width: 40px !important; height: 40px !important; color: var(--em-blue) !important;
  stroke-width: 1.5;
}
.em-card--about h4{
  font-family: var(--em-font-display); font-weight: 700; font-size: 1.4rem;
  color: var(--em-white); margin: 0 0 .5em;
}
.em-card--about p{ color: var(--em-navy-100); font-size: .92rem; line-height: 1.65; }

/* ---------- Propósito / valores (conteúdo novo, da apresentação) ----------
   Mais profundidade: grade pontilhada de fundo + glows ambiente (mesmos
   tokens .em-glow do design-system) + cards com badge de ícone e numeração,
   inspirado em referências de SaaS premium (grid sutil, cards em camadas). */
.em-section--dotgrid{ position: relative; overflow: hidden; }
.em-section--dotgrid::before{
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(245,243,233,.14) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
}
.em-section--dotgrid > .em-container{ position: relative; z-index: 1; }

/* Grade quadriculada sutil (real: visivel nas secoes rosa/teal/preta do
   site em produção, ex. "Numeros que comprovam" e "Depoimentos"). Linha
   clara por padrão (--em-grid-line), pensada para fundos de cor média/escura. */
.em-section--grid{ position: relative; overflow: hidden; --em-grid-line: rgba(255,255,255,.12); }
.em-section--grid::before{
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--em-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--em-grid-line) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}
.em-section--grid > .em-container{ position: relative; z-index: 1; }

/* Fundos de seção sólidos do site real (kit Elementor: post-8.css) além
   dos já cobertos por base.css (--em-section--light/cream/dark). */
.em-section--pink{ background: var(--em-pink); }
/* Mesmo bug de contraste dos outros fundos (accent/black/slate/dark): o
   texto virava branco mas o fundo do pill continuava --em-teal-100 (bem
   claro), quase sumindo em cima do rosa da secao. Overlay translucido
   branco resolve, mesmo padrao. */
.em-section--pink .em-eyebrow, .em-section--pink .em-caption{ color: var(--em-white); }
.em-section--pink .em-eyebrow{ background: rgba(255, 255, 255, 0.18); }
.em-section--pink .em-eyebrow::before{ background: var(--em-white); }
.em-section--pink h2, .em-section--pink h3, .em-section--pink h4{ color: var(--em-white); }
.em-section--pink p{ color: rgba(255,255,255,.82); }

.em-section--accent{ background: var(--em-teal); }
/* Mesmo bug de contraste dos outros fundos escuros: o texto virava branco
   mas o fundo do pill continuava --em-teal-100 (um teal bem claro), quase
   didentico ao fundo teal da propria secao -> pill "sumindo", fonte e fundo
   quase na mesma cor. Overlay translucido branco resolve, mesmo padrao. */
.em-section--accent .em-eyebrow, .em-section--accent .em-caption{ color: var(--em-white); }
.em-section--accent .em-eyebrow{ background: rgba(255, 255, 255, 0.18); }
.em-section--accent .em-eyebrow::before{ background: var(--em-yellow); }
.em-section--accent h2, .em-section--accent h3, .em-section--accent h4{ color: var(--em-white); }
.em-section--accent p{ color: rgba(255,255,255,.85); }

.em-section--black{ background: var(--em-black); }
/* Bug real: o eyebrow claro (fundo --em-teal-100 + texto navy) so trocava a
   cor do texto pra cream em secao escura, mas manteve o fundo claro por
   baixo -> cream sobre quase-branco, texto invisivel. Corrige o fundo tambem
   (mesmo overlay translucido usado nos icones dos cards escuros). */
.em-section--black .em-eyebrow{
  color: var(--em-text-on-dark);
  background: rgba(245, 243, 233, 0.12);
}
.em-section--black .em-eyebrow::before{ background: var(--em-yellow); }
.em-section--black .em-caption{ color: var(--em-text-on-dark); }
.em-section--black h2, .em-section--black h3, .em-section--black h4{ color: var(--em-white); }
.em-section--black p{ color: var(--em-text-on-dark-muted); }

.em-section--slate{ background: var(--em-navy-600); }
.em-section--slate .em-eyebrow{ color: var(--em-text-on-dark); background: rgba(245, 243, 233, 0.12); }
.em-section--slate .em-eyebrow::before{ background: var(--em-yellow); }
.em-section--slate .em-caption{ color: var(--em-text-on-dark); }
.em-section--slate h2, .em-section--slate h3, .em-section--slate h4{ color: var(--em-white); }
.em-section--slate p{ color: rgba(255,255,255,.78); }

/* Mesmo bug de contraste do eyebrow, agora para .em-section--dark (base.css),
   caso alguma secao com gradiente escuro use o rotulo. */
.em-section--dark .em-eyebrow{ color: var(--em-text-on-dark); background: rgba(245, 243, 233, 0.12); }
.em-section--dark .em-eyebrow::before{ background: var(--em-yellow); }

.em-values{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
@media (max-width: 860px){ .em-values{ grid-template-columns: 1fr; } }

.em-value-card{
  text-align: left;
  position: relative;
  border-top: 3px solid var(--em-yellow);
  overflow: hidden;
}
.em-value-card__top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1em; }
.em-value-card__icon{
  width: 48px; height: 48px; border-radius: var(--em-radius-sm);
  background: rgba(234,181,72,.14);
  display: inline-flex; align-items: center; justify-content: center;
}
.em-value-card__icon .em-icon{ width: 24px; height: 24px; color: var(--em-yellow); stroke-width: 1.6; }
.em-value-card__num{
  font-family: var(--em-font-display); font-weight: 800; font-size: 1.6rem;
  color: rgba(245,243,233,.16); line-height: 1;
}
.em-value-card blockquote{
  margin: 1.2em 0 0; padding-left: .9em; border-left: 3px solid var(--em-border-dark);
  font-size: .82rem; font-style: italic; color: var(--em-text-on-dark-muted);
}
.em-value-card cite{ display: block; margin-top: .3em; font-style: normal; font-size: .74rem; opacity: .8; }

/* ---------- Header de seção em 2 colunas (eyebrow+título | parágrafo) ----------
   Real: "Por que escolher o eMini?" e "Muito mais do que um mercadinho 24x7"
   usam eyebrow+h2 à esquerda e o parágrafo de apoio à direita, não empilhados. */
/* align-items:center (nao flex-end) pra titulo e paragrafo ficarem
   alinhados "na mesma altura" mesmo quando um bloco tem mais linhas que o
   outro (mesmo padrao do site real: .nm-choose-1-sec-title{align-items:center}). */
.em-section-head--split{
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: clamp(20px, 3vw, 40px); max-width: none;
}
.em-section-head--split > div{ max-width: 640px; }
.em-section-head--split > p{ max-width: 400px; margin: 0; flex: 1; }
/* Variante com CTA junto do paragrafo (ex.: Depoimentos: paragrafo + botao
   "Fale Conosco" do lado direito, precisa de um wrapper em vez de <p> puro). */
.em-section-head--split > .em-section-head__aside{
  max-width: 360px; flex: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1em;
}
.em-section-head--split > .em-section-head__aside p{ margin: 0; }

/* ---------- Diferenciais: abas verticais + painel escuro + foto duotone ----------
   Proporcao 1 : 2.1 igual ao site real (nm-services-1-wrap), pra coluna de abas
   parar de parecer um menu miudo do lado de um card enorme: agora ela ganha
   ~32% da largura (era ~22%, travada em 270px) e os botoes ficam bem mais
   robustos (fonte e padding maiores), equilibrando o peso visual com o
   painel escuro + foto do lado direito. */
.em-diff-layout{ display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr); gap: clamp(18px, 2.6vw, 28px); align-items: start; }
@media (max-width: 900px){ .em-diff-layout{ grid-template-columns: 1fr; } }
/* Acima de 900px: as 4 abas precisam ocupar a mesma altura total da caixa
   preta ao lado (sem sobrar rosa vazio abaixo da ultima aba). O grid
   estica a coluna das abas para a altura da linha (igual ao painel ativo)
   e cada botao cresce em partes iguais (flex:1) para preencher esse
   espaco, ficando mais robusto em vez de so abrir gap entre eles. */
@media (min-width: 901px){
  .em-diff-layout{ align-items: stretch; }
  .em-diff-tabs{ height: 100%; }
  .em-diff-tabs .em-tabs__btn{ flex: 1; }
}

.em-diff-tabs{ display: flex; flex-direction: column; gap: .7rem; flex-wrap: nowrap; margin-bottom: 0; }
.em-diff-tabs .em-tabs__btn{
  background: var(--em-navy-600); color: var(--em-white);
  border: none; border-radius: var(--em-radius-lg);
  text-align: left; padding: clamp(1.15em, 1em + .5vw, 1.5em) clamp(1.3em, 1.1em + .8vw, 1.8em);
  font-size: clamp(1rem, .93rem + .3vw, 1.14rem);
  font-weight: 700;
  line-height: 1.32;
  box-shadow: 0 5px 0 0 rgba(0,0,0,.16);
  position: relative;
  display: flex; align-items: center; gap: .7em;
}
.em-diff-tabs .em-tabs__btn::before{
  content: counter(diff-tab, decimal-leading-zero);
  counter-increment: diff-tab;
  flex-shrink: 0;
  font-size: .8rem; font-weight: 800;
  opacity: .55;
  letter-spacing: .02em;
}
.em-diff-tabs{ counter-reset: diff-tab; }
.em-diff-tabs .em-tabs__btn:hover{ background: var(--em-navy-700); color: var(--em-white); }
.em-diff-tabs .em-tabs__btn.is-active{ background: var(--em-red); box-shadow: 0 5px 0 0 rgba(0,0,0,.22); }
.em-diff-tabs .em-tabs__btn.is-active::before{ opacity: .85; }
@media (max-width: 900px){
  .em-diff-tabs{ flex-direction: column; }
  #diferenciais .em-section-head--split{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #diferenciais .em-section-head--split > div,
  #diferenciais .em-section-head--split > p{
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }
  #diferenciais .em-diff-tabs .em-tabs__btn{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.em-diff-panel-wrap{ display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
@media (max-width: 700px){ .em-diff-panel-wrap{ grid-template-columns: 1fr; } }

.em-diff-panel{
  background: var(--em-black); color: var(--em-text-on-dark);
  padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; gap: 1em;
  border-radius: var(--em-radius-lg) 0 0 var(--em-radius-lg);
}
@media (max-width: 700px){ .em-diff-panel{ border-radius: var(--em-radius-lg) var(--em-radius-lg) 0 0; } }
.em-diff-panel p{ color: var(--em-text-on-dark-muted); margin: 0; font-size: .94rem; line-height: 1.65; }
.em-diff-panel ul{ margin: 0; padding-left: 1.2em; color: var(--em-text-on-dark-muted); }
.em-diff-panel li{ margin-bottom: .35em; font-size: .94rem; }
.em-diff-panel__icon{
  width: 48px; height: 48px; border-radius: var(--em-radius-sm);
  background: var(--em-navy-100); color: var(--em-navy-900);
  display: inline-flex; align-items: center; justify-content: center;
}
.em-diff-panel__icon .em-icon{ width: 22px; height: 22px; }
/* CTA com mais destaque dentro da caixa preta: usa a cor primaria da marca
   (rosa, mesma do resto do site) em vez do navy apagado, com padding e
   fonte maiores e sombra rosa, mantendo o icone em circulo embutido. */
.em-diff-panel .em-btn--onpanel{
  align-self: flex-start; margin-top: .5em;
  background: var(--em-pink); color: var(--em-white);
  display: inline-flex; align-items: center; gap: .8em;
  padding: .5em 1.9em .5em .5em; border-radius: var(--em-radius-pill);
  font-weight: 800; font-size: 1.02rem; text-decoration: none;
  box-shadow: var(--em-shadow-pink);
  transition: transform var(--em-fast) var(--em-ease), background var(--em-fast) var(--em-ease), box-shadow var(--em-fast) var(--em-ease);
}
.em-diff-panel .em-btn--onpanel:hover{ transform: translateY(-3px); background: var(--em-pink-600); box-shadow: 0 22px 46px rgba(236,114,140,.42); }
.em-diff-panel .em-btn--onpanel:active{ transform: translateY(-1px) scale(.98); }
.em-diff-panel .em-btn--onpanel .em-icon{
  width: 38px !important; height: 38px !important; padding: 10px; box-sizing: border-box;
  background: rgba(255,255,255,.24); color: var(--em-white); border-radius: 50%; flex-shrink: 0;
}

.em-diff-photo{ position: relative; overflow: hidden; border-radius: 0 var(--em-radius-lg) var(--em-radius-lg) 0; min-height: 260px; }
@media (max-width: 700px){ .em-diff-photo{ border-radius: 0 0 var(--em-radius-lg) var(--em-radius-lg); } }
.em-diff-photo img{ width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08) brightness(.92); }
.em-diff-photo::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(17,17,17,.15), rgba(17,17,17,.55));
  mix-blend-mode: multiply;
}

/* ---------- Números (contadores) ----------
   Empilhado e centralizado: titulo (uma linha) -> caixas dos numeros ->
   texto corrido embaixo. Era cabecalho estreito (~30%) + grade (~70%) lado
   a lado, o que espremia o titulo em 3 linhas sem motivo (a secao tem a
   largura toda do container disponivel). */
.em-numbers-wrap{ text-align: center; }
.em-numbers-head{ margin-bottom: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); max-width: none; }
.em-numbers-head h2{ margin: 0 auto; max-width: 900px; }
@media (min-width: 769px){ .em-numbers-head h2{ white-space: nowrap; } }
.em-numbers-foot{
  margin: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem) auto 0;
  max-width: 78ch;
  color: rgba(255,255,255,.86);
  font-size: 1.02rem;
  line-height: 1.6;
}
@media (max-width: 640px){ .em-numbers-foot{ max-width: 46ch; } }

.em-numbers{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); align-items: stretch; }
@media (max-width: 640px){ .em-numbers{ grid-template-columns: 1fr; } }

.em-number-card{
  display: grid;
  grid-template-rows: 38px 4.8rem 3.6em;
  align-items: center;
  justify-items: center;
  row-gap: .55rem;
  background: var(--em-black); border-radius: var(--em-radius-lg);
  padding: clamp(30px, 3.4vw, 42px) clamp(14px, 2vw, 24px);
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.25);
  transition: transform var(--em-fast) var(--em-ease);
}
.em-number-card:hover{ transform: translateY(-6px); }
.em-number-card::before{
  content: ""; position: absolute; z-index: 0;
  width: 200px; height: 200px; border-radius: 50%;
  top: -70px; left: 50%; transform: translateX(-50%);
  filter: blur(46px); opacity: .5;
  background: radial-gradient(circle, var(--em-glow-color, var(--em-pink)) 0%, transparent 70%);
  pointer-events: none;
}
.em-number-card > *{ position: relative; z-index: 1; }
.em-number-card--glow-pink{ --em-glow-color: var(--em-pink); }
.em-number-card--glow-teal{ --em-glow-color: var(--em-teal); }
.em-number-card--glow-yellow{ --em-glow-color: var(--em-yellow-600); }
/* Icone menor e discreto: e so um acento, o numero e a estrela do card. */
.em-number-card__icon{
  width: 38px; height: 38px; margin: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(245,243,233,.1);
  color: var(--em-glow-color, var(--em-pink));
}
.em-number-card__icon .em-icon{ width: 17px; height: 17px; }
.em-number-card strong{
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; margin: 0;
  font-family: var(--em-font-display); font-weight: 800;
  font-size: clamp(2.35rem, 1.7rem + 1.8vw, 3.4rem);
  white-space: nowrap;
  line-height: 1;
  color: var(--em-white); letter-spacing: .01em;
}
/* R$ 0,00 cabe na mesma faixa dos outros numeros, so um pouco menor. */
.em-number-card--money strong{
  font-size: clamp(1.85rem, 1.25rem + 1.4vw, 2.7rem);
  letter-spacing: -.02em;
}
/* Combinador de filho direto (>), nao descendente: sem isso, este seletor
   tambem acertava o <span data-count-to> que fica DENTRO do <strong> do
   numero, forcando display:block + font-size:.9rem nele. */
.em-number-card > span{
  display: flex; align-items: flex-start; justify-content: center;
  align-self: stretch; width: 100%; height: 100%;
  margin: 0;
  font-size: .9rem; font-weight: 600; line-height: 1.35;
  color: var(--em-navy-100);
  max-width: 24ch;
}

/* ---------- Formatos de implantação ---------- */
.em-formats{ display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 28px); }
@media (max-width: 760px){ .em-formats{ grid-template-columns: 1fr; } }
/* Cabecalho da secao Vantagens: era split (titulo esquerda, travado em
   640px, + paragrafo do lado direito), o que quebrava "Muito mais do que
   um mercadinho 24x7" em duas linhas. Agora e empilhado (titulo em cima,
   paragrafo embaixo, com a quebra manual pedida) e ganha largura suficiente
   pro titulo caber numa linha so em telas de desktop/tablet largo. */
#diferenciais-2 .em-section-head{ max-width: 900px; }
@media (min-width: 993px){
  #diferenciais-2 .em-section-head h2{ white-space: nowrap; }
}

/* ---------- Vantagens (diferenciais-2): cards no mesmo preto da secao ----------
   Site real usa --nm-clr-black-2 (#111111) em TODOS os cards dessa grade, ou
   seja, o mesmo preto do fundo da secao (nao um degrade navy/teal deslocado
   como estava aqui). A cor entra por um glow desfocado no canto (accent por
   card) + icone colorido, elementos centralizados, igual ao padrao real
   (.nm-choose-1-handshake/testimonial/turnaround). */
#diferenciais-2 .em-card--dark{
  background: var(--em-black);
  border-color: var(--em-border-dark);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  /* O grid estica cada card para a altura da linha (ex.: igual a foto ao
     lado, ou ao card mais alto da fileira de baixo). Sem isso o conteudo
     (icone + titulo + texto) ficava colado no topo, sobrando espaco preto
     vazio embaixo. Agora fica centralizado no meio, vertical e
     horizontalmente, em todos os cards dessa secao (as duas fileiras). */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#diferenciais-2 .em-card--dark::before{
  content: "";
  position: absolute; z-index: 0;
  width: 220px; height: 220px; border-radius: 50%;
  top: -76px; left: 50%; transform: translateX(-50%);
  filter: blur(48px);
  opacity: .45;
  background: radial-gradient(circle, var(--em-glow-color, var(--em-pink)) 0%, transparent 70%);
  pointer-events: none;
}
#diferenciais-2 .em-card--dark > *{ position: relative; z-index: 1; }
#diferenciais-2 .em-card__icon{ margin: 0 auto 1.1em; }
#diferenciais-2 .em-card--dark p{ max-width: 320px; margin-left: auto; margin-right: auto; }
#diferenciais-2 .em-card--glow-blue{ --em-glow-color: var(--em-blue); }
#diferenciais-2 .em-card--glow-pink{ --em-glow-color: var(--em-pink); }
#diferenciais-2 .em-card--glow-teal{ --em-glow-color: var(--em-teal); }
#diferenciais-2 .em-card--glow-yellow{ --em-glow-color: var(--em-yellow-600); }
#diferenciais-2 .em-card--stat h4{
  font-size: clamp(1.45rem, 1.25rem + .7vw, 1.85rem);
  line-height: 1.25;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
#diferenciais-2 .em-card--glow-pink.em-card--stat h4{
  max-width: none;
}

.em-format-card{
  position: relative; border-radius: var(--em-radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--em-shadow-md);
  isolation: isolate;
  cursor: pointer;
  transition:
    transform var(--em-base) var(--em-ease),
    box-shadow var(--em-base) var(--em-ease);
}
.em-format-card img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition:
    transform var(--em-slow) var(--em-ease),
    filter var(--em-base) var(--em-ease);
}
.em-format-card::before{
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,164,156,.08) 0%, rgba(0,164,156,.55) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--em-base) var(--em-ease);
}
.em-format-card::after{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(38,52,64,0) 40%, rgba(38,52,64,.82) 100%);
  transition: background var(--em-base) var(--em-ease);
  pointer-events: none;
}
.em-format-card__label{
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2;
  color: var(--em-white); font-family: var(--em-font-display); font-weight: 700; font-size: 1.05rem;
  transition:
    transform var(--em-base) var(--em-ease),
    color var(--em-base) var(--em-ease);
}
.em-format-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0,164,156,.32);
}
.em-format-card:hover img{
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.06);
}
.em-format-card:hover::before{ opacity: 1; }
.em-format-card:hover::after{
  background: linear-gradient(180deg, rgba(0,164,156,.18) 18%, rgba(0,44,94,.72) 100%);
}
.em-format-card:hover .em-format-card__label{
  transform: translateY(-6px);
  color: var(--em-yellow);
}
@media (prefers-reduced-motion: reduce){
  .em-format-card,
  .em-format-card img,
  .em-format-card::before,
  .em-format-card::after,
  .em-format-card__label{ transition: none; }
  .em-format-card:hover{ transform: none; }
  .em-format-card:hover img{ transform: none; }
  .em-format-card:hover .em-format-card__label{ transform: none; }
}

/* ---------- Depoimentos ---------- */
.em-testi-rating{ display: inline-flex; gap: 2px; color: var(--em-yellow-600); margin-bottom: .8em; }
.em-testi-rating .em-icon{ width: 16px; height: 16px; fill: currentColor; stroke: none; }

/* Carrossel de depoimentos: esteira infinita (JS anima translateX, cards
   sao clonados uma vez pra fechar o loop sem salto), 3 cards ativos por
   vez no desktop. .em-testi-viewport corta o excesso e esmaece as bordas
   (mask-image) pra "quebrar" o corte duro do card parcial na direita em
   vez de deixar a borda seca; a barra de progresso cinza-marca foi
   removida (sem sentido num loop que nunca termina). */
.em-testi-viewport{
  overflow: hidden;
  margin: 0 -6px;
  padding: 6px 6px 10px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 56px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 56px), transparent 100%);
}
.em-testi-track{
  display: flex; gap: 1.2rem;
  width: max-content;
  will-change: transform;
}
.em-testi-card{
  flex: 0 0 var(--em-testi-card-w, 340px);
  background: var(--em-white); border: 1px solid var(--em-border);
  border-radius: var(--em-radius-lg); padding: 26px;
  box-shadow: var(--em-shadow-sm);
  display: flex; flex-direction: column;
}
.em-testi-card p{ flex: 1; color: var(--em-text); font-size: .96rem; }
.em-testi-card__author{ display: flex; align-items: center; gap: .8rem; margin-top: 1em; padding-top: 1em; border-top: 1px solid var(--em-border); }
.em-testi-card__author img{ width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.em-testi-card__author strong{ display: block; font-size: .88rem; }
.em-testi-card__author span{ font-size: .74rem; color: var(--em-text-muted); }
.em-testi-nav{ display: flex; gap: .6rem; justify-content: flex-end; margin-top: -8px; }
.em-testi-nav button{
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--em-border);
  background: var(--em-white); cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--em-fast) var(--em-ease);
}
.em-testi-nav button:hover{ background: var(--em-navy-900); border-color: var(--em-navy-900); color: var(--em-white); }
@media (max-width: 640px){
  .em-testi-viewport{ -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Etapas de implantação: timeline vertical alternada ----------
   Tecnica do site real (nm-steps-1 + gsap ScrollTrigger, nimo-core.js):
   cada etapa tem o proprio trilho (bolinha 45px + linha 7px). No scroll,
   o preenchimento da linha cresce de cima pra baixo (scaleY 0→1), a
   bolinha troca de #111/branco para --em-blue/preto, e o card entra com
   rotateY 45°→0 (perspective 2000px). Grade quadriculada vem da
   .em-section--grid no <section>, um pouco mais leve no preto. */
#implementa.em-section--grid{ --em-grid-line: rgba(255,255,255,.07); }

.em-timeline{
  position: relative;
  display: grid;
  gap: 0;
  max-width: 1050px;
  margin: 0 auto;
  padding-top: 6px;
}
.em-step{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  column-gap: clamp(24px, 3.4vw, 40px);
  perspective: 2000px;
  --em-step-p: 0;
}
.em-step__rail{
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45px;
}
.em-step__num{
  width: 45px; height: 45px; border-radius: 50%;
  background: color-mix(in srgb, var(--em-blue) calc(var(--em-step-p) * 100%), #111);
  color: color-mix(in srgb, #000 calc(var(--em-step-p) * 100%), #fff);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--em-font-display); font-weight: 800; font-size: 1.05rem;
  flex: 0 0 auto; z-index: 2;
}
.em-step__num.is-active{ background: var(--em-blue); color: #000; }
.em-step__line{
  width: 7px;
  flex: 1 1 auto;
  background: #111;
  border: 1px solid rgba(255,255,255,.05);
  border-top: none;
  overflow: hidden;
}
.em-step__line-fill{
  display: block;
  width: 100%; height: 100%;
  background: var(--em-blue);
  border-radius: 0 0 20px 20px;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}
.em-step__card{
  grid-row: 1;
  margin: clamp(28px, 3.4vw, 50px) 0;
  background: #111;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--em-radius-lg);
  padding: clamp(28px, 3.2vw, 50px) clamp(22px, 2.8vw, 40px);
  padding-top: clamp(36px, 4vw, 56px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.em-step:nth-child(odd) .em-step__card{
  grid-column: 1;
  transform-origin: 100% 50%;
  transform: rotateY(-45deg);
}
.em-step:nth-child(even) .em-step__card{
  grid-column: 3;
  transform-origin: 0% 50%;
  transform: rotateY(45deg);
}
.em-step h4{ margin-bottom: .5em; color: var(--em-white); }
.em-step h4 span{ color: var(--em-blue); margin-right: .4em; opacity: .3; }
.em-step p{ color: var(--em-text-on-dark-muted); }
.em-step ul{ margin: .8em 0 0; }
.em-step li{ position: relative; padding-left: 1.3em; margin-bottom: .4em; color: var(--em-text-on-dark-muted); font-size: .95rem; }
.em-step li::before{ content: "•"; position: absolute; left: 0; color: var(--em-blue); font-weight: 700; }
@media (max-width: 900px){
  .em-step{
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    perspective: none;
  }
  .em-step__rail{ grid-column: 1; width: 36px; }
  .em-step__num{ width: 36px; height: 36px; font-size: .92rem; }
  .em-step__card,
  .em-step:nth-child(odd) .em-step__card,
  .em-step:nth-child(even) .em-step__card{
    grid-column: 2;
    margin: 16px 0;
    transform: none;
    transform-origin: center;
  }
}
@media (prefers-reduced-motion: reduce){
  .em-step__card,
  .em-step:nth-child(odd) .em-step__card,
  .em-step:nth-child(even) .em-step__card{ transform: none; }
  .em-step__line-fill{ transform: scaleY(1); }
  .em-step{ --em-step-p: 1; }
}

/* ---------- FAQ (accordion) ---------- */
.em-faq-layout{ display: grid; grid-template-columns: 1.05fr 1.2fr; gap: clamp(30px, 5vw, 60px); align-items: stretch; }
@media (max-width: 960px){ .em-faq-layout{ grid-template-columns: 1fr; } }

/* ---------- Card de contato do FAQ (padrao Bonnke: mapa + CTA) ----------
   Substitui o formulario solto nome/email/mensagem (sem backend real) por
   um card com mapa do escritorio + CTA que abre o mesmo drawer lateral
   padrao Kestriah usado no resto do site (data-lead), dando peso visual
   equivalente a lista de FAQs ao lado em vez de uma caixa pequena e
   descolada da grade de perguntas. */
.em-faq-contact-card{
  background: var(--em-black); border-radius: var(--em-radius-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,.1);
  height: 100%;
  display: flex; flex-direction: column;
}
.em-faq-contact-card__map{
  position: relative; width: 100%;
  flex: 1 1 auto;
  min-height: 240px;
  background: var(--em-navy-900);
  filter: grayscale(.25) contrast(1.05);
}
.em-faq-contact-card__map iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.em-faq-contact-card__body{ padding: clamp(24px, 3vw, 32px); flex: 0 0 auto; }
@media (max-width: 960px){
  .em-faq-contact-card{ height: auto; }
  .em-faq-contact-card__map{ flex: none; aspect-ratio: 16/10; min-height: 0; }
}
.em-faq-contact-card__body h3{ font-size: clamp(1.3rem, 1.1rem + .6vw, 1.6rem); }
.em-faq-contact-card__body > p{ margin-top: .6em; }

.em-faq-contact-info{ display: flex; flex-direction: column; gap: .9em; margin-top: 1.4em; }
.em-faq-contact-info__item{ display: flex; align-items: center; gap: .8em; font-size: .92rem; color: var(--em-text-on-dark-muted); }
.em-faq-contact-info__item .em-icon{ width: 19px; height: 19px; color: var(--em-pink); flex-shrink: 0; }
.em-faq-contact-info__item a{ color: var(--em-white); font-weight: 600; }
.em-faq-contact-info__item a:hover{ color: var(--em-pink); }

.em-faq-contact-cta{ display: inline-flex; align-items: center; gap: .6em; margin-top: 1.6em; width: 100%; justify-content: center; }

.em-accordion{ border-top: 1px solid rgba(255,255,255,.16); }
.em-accordion-item{ border-bottom: 1px solid rgba(255,255,255,.16); }
.em-accordion-item__btn{
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 20px 4px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--em-font-display); font-weight: 700; font-size: 1rem;
  color: var(--em-white);
}
.em-accordion-item__num{ font-size: .78rem; color: var(--em-blue); font-weight: 800; flex-shrink: 0; }
.em-accordion-item__btn .em-icon{ margin-left: auto; width: 20px; height: 20px; color: var(--em-white); transition: transform var(--em-fast) var(--em-ease); flex-shrink: 0; }
.em-accordion-item.is-open .em-accordion-item__btn .em-icon{ transform: rotate(45deg); }
.em-accordion-item.is-open .em-accordion-item__btn{ color: var(--em-blue); }
.em-accordion-item__panel{ max-height: 0; overflow: hidden; transition: max-height var(--em-base) var(--em-ease); }
.em-accordion-item__panel p{ padding: 0 4px 20px 4px; margin: 0; white-space: pre-line; color: var(--em-text-on-dark-muted); }
.em-accordion-item.em-faq-new .em-accordion-item__num{ color: var(--em-yellow); }

.em-faq-badge-new{
  display: inline-flex; margin-left: .6em;
  font-size: .62rem; font-weight: 800; letter-spacing: .06em;
  color: var(--em-navy-900); background: var(--em-yellow);
  padding: .25em .6em; border-radius: var(--em-radius-pill);
  text-transform: uppercase; vertical-align: middle;
}

/* ---------- Fechamento / CTA ----------
   Sem repetir endereco, telefone e horario (ja estao no FAQ e no rodape).
   Predio recortado ocupa a altura da secao, alinhado ao rodape. */
#contato.em-section,
#contato.em-section--grid{ overflow: visible; }
#contato.em-section{
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: 0;
}
#contato{ scroll-margin-top: 96px; }

.em-cta-wrap{
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  min-height: clamp(440px, 58vh, 640px);
}
@media (max-width: 900px){
  .em-cta-wrap{
    grid-template-columns: 1fr;
    min-height: 0;
    justify-items: center;
    text-align: center;
  }
}

.em-cta-visual{
  position: relative;
  align-self: end;
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 58vh, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.em-cta-visual::after{
  content: "";
  position: absolute; top: 18%; left: 50%;
  width: 42%; height: 42%;
  transform: translateX(-50%);
  background: #fff; border-radius: 50%;
  filter: blur(90px); opacity: .28;
  z-index: 0; pointer-events: none;
}
.em-cta-visual img{
  position: relative; z-index: 1;
  display: block;
  width: auto;
  height: 100%;
  max-height: clamp(440px, 58vh, 640px);
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}

.em-cta-main{
  min-width: 0;
  padding: 8px 0 clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.em-cta-main h2{
  font-size: clamp(2.15rem, 1.55rem + 2.4vw, 3.35rem);
  max-width: 12ch;
  margin: .15em 0 .45em;
  color: var(--em-text-on-dark);
}
.em-cta-main p{
  margin: 0 0 1.6rem;
  max-width: 34ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--em-text-on-dark-muted);
}
.em-cta-btn{ align-self: flex-start; }

@media (max-width: 900px){
  .em-cta-visual{
    min-height: 0;
    max-width: 420px;
  }
  .em-cta-visual img{
    height: auto;
    width: 100%;
    max-height: 420px;
  }
  .em-cta-main{
    align-items: center;
    padding-bottom: clamp(40px, 7vw, 64px);
  }
  .em-cta-main h2,
  .em-cta-main p{ max-width: 22ch; }
  .em-cta-btn{ align-self: center; }
}

/* ---------- Form (mapeia para .em-field / .em-input já existentes) ---------- */
.em-form-grid{ display: grid; gap: 1rem; }

/* ---------- Footer (padrão Kestriah, referência Hasa: parrudo) ---------- */
.em-footer{
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #0b1014;
  color: rgba(255,255,255,.78);
  border-top: 3px solid var(--em-pink);
}
.em-footer::before{
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 40px 40px;
}
.em-footer > .em-container{ position: relative; z-index: 1; }
.em-footer p, .em-footer a, .em-footer h3, .em-footer h5{ color: inherit; }

.em-footer__cta{
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.em-footer__cta-text{ max-width: 640px; }
.em-footer__cta-text h3{
  margin: 0 0 .5rem;
  font-family: var(--em-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800; line-height: 1.2;
  color: #fff;
}
.em-footer__cta-text p{
  margin: 0;
  font-size: .95rem; line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.em-footer__cta .em-btn{ flex-shrink: 0; }

.em-footer__grid{
  display: grid;
  grid-template-columns: 1.5fr .9fr .9fr 1.6fr;
  gap: 2.5rem;
  padding: 3.4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px){
  .em-footer__grid{ grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 0; }
  .em-footer__cta{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px){ .em-footer__grid{ grid-template-columns: 1fr; } }

.em-footer__brand img{
  height: 56px; width: auto; margin-bottom: 1.25rem;
}
.em-footer__desc{
  margin: 0 0 1.2rem;
  max-width: 280px;
  font-size: .9rem; line-height: 1.7;
  color: rgba(255,255,255,.62);
}
.em-footer__badge{
  display: inline-flex; align-items: center;
  margin-bottom: 1.4rem;
  padding: .35rem .9rem;
  border-radius: var(--em-radius-pill);
  border: 1px solid rgba(252,212,102,.35);
  background: rgba(252,212,102,.1);
  color: var(--em-yellow);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
}
.em-footer__social{ display: flex; flex-wrap: wrap; gap: .625rem; }
.em-footer__social a{
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.em-footer__social .em-icon{ width: 16px; height: 16px; }
.em-footer__social a:hover{
  background: var(--em-pink); border-color: var(--em-pink); color: #fff;
  transform: translateY(-2px);
}

.em-footer__col h5{
  margin: 0 0 1.2rem;
  font-family: var(--em-font-display);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .08em;
  color: var(--em-yellow);
}
.em-footer__col ul{ display: flex; flex-direction: column; gap: .75rem; }
.em-footer__col ul a{
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .92rem; color: rgba(255,255,255,.7);
  transition: color .2s;
}
.em-footer__col ul a::before{
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--em-yellow); opacity: .7; flex-shrink: 0;
}
.em-footer__col ul a:hover{ color: #fff; }
.em-footer__col ul a:hover::before{ opacity: 1; }

.em-footer__contact{ display: flex; flex-direction: column; gap: 1.05rem; }
.em-footer__contact-item{ display: flex; align-items: flex-start; gap: .75rem; }
.em-footer__contact-icon{
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: rgba(252,212,102,.1);
  border: 1px solid rgba(252,212,102,.22);
  color: var(--em-yellow);
  display: inline-flex; align-items: center; justify-content: center;
}
.em-footer__contact-icon .em-icon{ width: 16px; height: 16px; }
.em-footer__contact-label{
  display: block;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--em-yellow);
  margin-bottom: .25rem;
}
.em-footer__contact p{
  margin: 0;
  font-size: .88rem; line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.em-footer__contact a{ color: #fff; }
.em-footer__contact a:hover{ color: var(--em-yellow); }

.em-footer__bottom{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.75rem 0;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
}
.em-footer__bottom p{ margin: 0; color: rgba(255,255,255,.5); }
.em-footer__bottom a{ color: rgba(255,255,255,.5); }
.em-footer__bottom a:hover{ color: #fff; }

/* ---------- WhatsApp float button (classe própria do site + gancho do lead-form) ---------- */
.wa-float{
  position: fixed; right: 22px; bottom: 22px; z-index: 39;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--em-teal); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px rgba(0, 164, 156, .45);
  transition: transform var(--em-fast) var(--em-ease);
}
.wa-float:hover{ transform: translateY(-4px) scale(1.06); }
.wa-float .em-icon{ width: 36px; height: 36px; }

/* ---------- Utilidades ---------- */
.em-mt-0{ margin-top: 0 !important; }
.em-max-560{ max-width: 560px; }
.em-max-640{ max-width: 640px; }

/* ---------- Páginas legais ---------- */
.em-legal{
  padding: clamp(2.4rem, 5vw, 4.2rem) 0 clamp(4rem, 7vw, 6rem);
}
.em-legal__back{
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .92rem;
  color: var(--em-pink-700);
  margin-bottom: 1.4rem;
}
.em-legal__back:hover{ color: var(--em-navy-900); }
.em-legal article{ max-width: 760px; }
.em-legal h1{ margin: .2em 0 .6em; }
.em-legal .em-lead{ max-width: 58ch; }
.em-legal__updated{
  font-size: .9rem; color: var(--em-text-muted);
  margin: 0 0 1.8rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--em-border);
}
.em-legal h2{
  font-size: 1.35rem;
  margin: 2.2rem 0 .7rem;
}
.em-legal h2:first-of-type{ margin-top: 0; }
.em-legal p, .em-legal li{
  font-size: 1.02rem; line-height: 1.75;
  color: var(--em-navy-700);
}
.em-legal p{ margin: 0 0 1rem; }
.em-legal ul{ margin: 0 0 1.2rem; padding-left: 1.2rem; }
.em-legal li{ margin: 0 0 .45rem; }
.em-legal a{ color: var(--em-pink-700); font-weight: 600; }
.em-legal a:hover{ color: var(--em-navy-900); }
