/* =========================================================================
   Dr. Primo Paganini — Psiquiatra & Neurociência
   Folha de estilo principal (identidade visual + layout responsivo)
   Este CSS é o mesmo espírito visual que você recriará no Elementor.
   ========================================================================= */

:root {
  /* ---- CORES ---- */
  --primary:        #14508C;   /* Azul confiança (saúde) */
  --primary-dark:   #0E3A66;   /* Azul profundo (hover / footer) */
  --primary-soft:   #E8F1FA;   /* Azul lavado (fundos de seção) */
  --accent:         #E3A93C;   /* Dourado suave = COR DE CTA principal */
  --accent-dark:    #C68F27;
  --whatsapp:       #25D366;   /* Verde WhatsApp */
  --ink:            #1E2A38;   /* Texto principal */
  --ink-soft:       #55657A;   /* Texto secundário */
  --line:           #E2E8F0;   /* Bordas/divisórias */
  --white:          #FFFFFF;
  --bg:             #FFFFFF;
  --bg-alt:         #F6F9FC;   /* Cinza claro alternado */

  /* ---- TIPOGRAFIA ---- */
  --font-title: "Playfair Display", Georgia, serif;
  --font-body:  "Inter", "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* ---- LAYOUT ---- */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px rgba(20, 80, 140, .12);
  --shadow-sm: 0 6px 20px rgba(20, 80, 140, .08);
  --trans: .35s cubic-bezier(.2,.7,.3,1);

  /* Imagem de fundo da marca (coloque em /assets/img/Fundo-site-Primo-Paganini.jpeg).
     Se o JPEG não existir, aparece o padrão em SVG (bg-network.svg) como reserva. */
  --brand-bg: url("../img/Fundo-site-Primo-Paganini.jpeg");
  --brand-pattern: url("../img/bg-network.svg");
}

/* ---------- Reset básico ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.15; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--ink-soft); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--alt { background: var(--bg-alt); }
.section--soft { background: var(--primary-soft); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; font-size: .78rem;
  color: var(--primary); background: var(--primary-soft);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.lead { font-size: 1.12rem; max-width: 720px; }
.center-block { margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-family: var(--font-body); font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: var(--trans);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--accent); color: #3a2c05; box-shadow: 0 10px 24px rgba(227,169,60,.35); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: #fff; }
.btn--wa { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn--wa:hover { background: #1eb457; }
.btn--white { background: #fff; color: var(--primary); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  transition: var(--trans);
  background: rgba(255,255,255,0);
  padding: 8px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 6px 24px rgba(15,58,102,.08);
  padding: 10px 0;
  backdrop-filter: saturate(160%) blur(8px);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
/* Logo em "chip" branco: funciona sobre o topo escuro E sobre o header branco,
   com um único arquivo de logo colorido. */
.brand { display: inline-flex; align-items: center; gap: 12px; background: #fff;
  padding: 5px 14px; border-radius: 12px; box-shadow: 0 8px 22px rgba(15,58,102,.16); transition: var(--trans); }
.site-header.scrolled .brand { padding: 5px 12px; box-shadow: 0 4px 14px rgba(15,58,102,.12); }
.brand img, .brand .brand-logo, .brand .custom-logo { height: 78px; width: auto; max-width: 300px; object-fit: contain; display: block; transition: var(--trans); }
.site-header.scrolled .brand img, .site-header.scrolled .brand .brand-logo, .site-header.scrolled .brand .custom-logo { height: 58px; }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu a { font-weight: 600; color: var(--ink); font-size: .98rem; position: relative; }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: var(--trans);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Header sobre hero escuro: texto branco antes do scroll */
.site-header:not(.scrolled) .nav-menu a,
.site-header:not(.scrolled) .brand-name { color: #fff; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 28px; position: relative; }
.burger span { position: absolute; left: 0; height: 3px; width: 100%; background: var(--primary); border-radius: 3px; transition: var(--trans); }
.site-header:not(.scrolled) .burger span { background: #fff; }
.burger span:nth-child(1){ top: 2px; } .burger span:nth-child(2){ top: 12px; } .burger span:nth-child(3){ top: 22px; }
.burger.open span:nth-child(1){ top: 12px; transform: rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ top: 12px; transform: rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; padding: 108px 0 30px;
  background:
    linear-gradient(120deg, rgba(11,38,66,.92) 0%, rgba(20,80,140,.78) 55%, rgba(20,80,140,.45) 100%),
    var(--brand-bg) center/cover no-repeat,
    var(--brand-pattern) center/cover no-repeat, var(--primary-dark);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(1.85rem, 3.1vw, 2.85rem); line-height: 1.12; }
.hero h1 .hl { color: var(--accent); font-style: italic; }
.hero p { color: rgba(255,255,255,.9); font-size: 1.05rem; max-width: 540px; margin-bottom: 22px; }
.hero .eyebrow { background: rgba(255,255,255,.14); color: #fff; margin-bottom: 14px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 22px; }
.hero__badge { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.92); }
.hero__badge b { font-family: var(--font-title); font-size: 1.4rem; color: #fff; }

.hero__photo {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.35); aspect-ratio: 4/5; max-height: 72vh; background: #dfe8f2;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__card {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,.95); color: var(--ink); border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-sm);
}
.hero__card .stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }
.hero__card small { color: var(--ink-soft); }

/* Foto real do médico (topo) */
.hero__photo--person { background: linear-gradient(180deg, #ffffff, #e8f1fa); }
.hero__photo--person img { object-fit: cover; object-position: center top; }

/* ---- VARIANTE CLARA DO HERO (topo claro, textos escuros) ---- */
.hero--light {
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.62) 48%, rgba(232,241,250,.30) 100%),
    var(--brand-bg) center/cover no-repeat,
    var(--brand-pattern) center/cover no-repeat, #eef5fb;
}
.hero--light h1 { color: var(--primary-dark); }
.hero--light h1 .hl { color: var(--primary); }
.hero--light p { color: var(--ink-soft); }
.hero--light .eyebrow { background: var(--primary-soft); color: var(--primary); }
.hero--light .hero__badge { color: var(--ink-soft); }
.hero--light .hero__badge b { color: var(--primary-dark); }
.hero--light .hero__photo { box-shadow: 0 30px 60px rgba(20,80,140,.22); }
/* Cabeçalho legível sobre o topo claro (antes de rolar) */
body.hero-light .site-header:not(.scrolled) .nav-menu a { color: var(--ink); }
body.hero-light .site-header:not(.scrolled) .burger span { background: var(--primary); }

/* =========================================================================
   PROVA SOCIAL / MÉTRICAS
   ========================================================================= */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.metric { text-align: center; padding: 26px 14px; }
.metric b { display: block; font-family: var(--font-title); font-size: clamp(2rem,4vw,2.8rem); color: var(--primary); }
.metric span { color: var(--ink-soft); font-size: .95rem; }

/* =========================================================================
   CARDS DE ESPECIALIDADE / SERVIÇO
   ========================================================================= */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: var(--trans); height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary); margin-bottom: 18px;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--primary); font-weight: 700; font-size: .95rem; }
.card__link:hover { color: var(--accent-dark); gap: 10px; }

/* Passo a passo (Como funciona) */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 22px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step__num {
  counter-increment: step; width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; font-family: var(--font-title); font-size: 1.3rem;
  display: grid; place-items: center; margin-bottom: 16px;
}
.step__num::before { content: counter(step); }

/* Diferenciais (lista) */
.perks { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px 34px; }
.perk { display: flex; gap: 14px; align-items: flex-start; }
.perk .tick { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin-top: 3px; }
.perk h4 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 3px; }

/* =========================================================================
   DEPOIMENTOS
   ========================================================================= */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--ink); font-style: italic; }
.quote .who { margin-top: 16px; font-weight: 700; color: var(--primary-dark); font-style: normal; }
.quote .who small { display: block; font-weight: 500; color: var(--ink-soft); }
.source-note { font-size: .85rem; color: var(--ink-soft); margin-top: 18px; text-align: center; }
/* Container do widget de avaliações do Doctoralia */
.reviews-embed { display: flex; justify-content: center; }
.reviews-embed > * { max-width: 100%; }
.reviews-embed iframe { max-width: 100% !important; border-radius: var(--radius); }
/* Prova social: selo/certificado + avaliações lado a lado */
.social-proof { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; margin-top: 40px; }
.social-proof .cert-embed { display: flex; justify-content: center; }
.social-proof .cert-embed iframe { max-width: 100% !important; border: 0; }
@media (max-width: 820px) { .social-proof { grid-template-columns: 1fr; justify-items: center; } }

/* =========================================================================
   SOBRE
   ========================================================================= */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.about__img { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: #dfe8f2; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about h2 span { color: var(--primary); }
.about ul.creds { margin-top: 22px; display: grid; gap: 12px; }
.about ul.creds li { display: flex; gap: 12px; }
.about ul.creds .tick { color: var(--primary); flex: 0 0 auto; }

/* Timeline formação */
.timeline { border-left: 2px solid var(--line); margin: 30px 0 0; padding-left: 26px; display: grid; gap: 26px; }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -33px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--accent); }
.timeline b { display: block; color: var(--primary-dark); }

/* =========================================================================
   CTA FAIXA
   ========================================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff; border-radius: 26px; padding: clamp(38px,5vw,64px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 640px; margin: 14px auto 28px; }
.cta-band .btn-row { justify-content: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: var(--brand-bg) center/cover; opacity: .08; }
.cta-band > * { position: relative; z-index: 1; }

/* =========================================================================
   PÁGINA: SUBHERO (páginas internas)
   ========================================================================= */
.subhero {
  padding: 160px 0 70px; color: #fff; text-align: center;
  background: linear-gradient(120deg, rgba(11,38,66,.92), rgba(20,80,140,.8)), var(--brand-bg) center/cover, var(--brand-pattern) center/cover, var(--primary-dark);
}
.subhero h1 { color: #fff; margin-bottom: 12px; }
.subhero p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.9); }

/* =========================================================================
   PALESTRAS (vídeos)
   ========================================================================= */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.video-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: var(--trans); }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.video-embed { position: relative; aspect-ratio: 16/9; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .vc-body { padding: 20px 22px; }
.video-card h3 { font-size: 1.1rem; margin-bottom: 6px; }

/* =========================================================================
   AGENDAMENTO (Doctoralia)
   ========================================================================= */
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.booking-embed { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; min-height: 620px; }
.booking-embed iframe { width: 100%; min-height: 620px; border: 0; display: block; }
.info-list { display: grid; gap: 18px; margin-top: 24px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }

/* =========================================================================
   ARTIGOS
   ========================================================================= */
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: var(--trans); }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post__thumb { aspect-ratio: 16/9; background: linear-gradient(120deg,var(--primary),var(--primary-dark)); display: grid; place-items: center; color: #fff; font-family: var(--font-title); }
.post__body { padding: 22px; }
.post__tag { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }
.post__body h3 { font-size: 1.15rem; margin: 8px 0; }
.post__meta { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.82); padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.82); transition: var(--trans); }
.site-footer a:hover { color: var(--accent); }
.footer-links { display: grid; gap: 10px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { flex: 0 0 auto; margin-top: 3px; color: var(--accent); }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; }
.socials a:hover { background: var(--accent); color: var(--primary-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.crm-note { font-size: .8rem; color: rgba(255,255,255,.6); }
.dev-credit { text-align: center; font-size: .82rem; color: rgba(255,255,255,.55); padding-top: 16px; }
.dev-credit a { color: var(--accent); font-weight: 600; }
.dev-credit a:hover { text-decoration: underline; }

/* =========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================= */
.wa-float {
  position: fixed; right: 22px; bottom: 24px; z-index: 950;
  display: flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: var(--trans);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); }
.wa-float svg { width: 34px; height: 34px; }
@keyframes wa-pulse { 0%{ box-shadow:0 12px 30px rgba(37,211,102,.45),0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow:0 12px 30px rgba(37,211,102,.45),0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 12px 30px rgba(37,211,102,.45),0 0 0 0 rgba(37,211,102,0);} }

/* =========================================================================
   EFEITOS DE SCROLL (reveal) — estilo everoli.com.br
   IMPORTANTE: o conteúdo só é escondido quando o JavaScript está ativo
   (classe .js no <html>). Sem JS, tudo aparece normalmente — nunca fica em branco.
   ========================================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.js [data-reveal="left"]  { transform: translateX(-46px); }
.js [data-reveal="right"] { transform: translateX(46px); }
.js [data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal].in { opacity: 1 !important; transform: none !important; }
[data-delay="1"]{ transition-delay:.12s;} [data-delay="2"]{ transition-delay:.24s;}
[data-delay="3"]{ transition-delay:.36s;} [data-delay="4"]{ transition-delay:.48s;}
/* Respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* Barra de progresso de leitura no topo */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--accent); z-index: 999; transition: width .1s linear; }

/* Voltar ao topo */
.to-top { position: fixed; left: 20px; bottom: 22px; z-index: 940; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: var(--trans); box-shadow: var(--shadow-sm); }
.to-top.show { opacity: 1; pointer-events: auto; }

/* =========================================================================
   RESPONSIVO (mobile-first friendly)
   ========================================================================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { max-width: 420px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; }
  /* Evita foto repetida do médico no celular/tablet (o topo já mostra a foto).
     No desktop a foto do Sobre continua aparecendo ao lado do texto. */
  .about__img { display: none; }
  .booking { grid-template-columns: 1fr; }
  .grid-3, .steps, .testimonials, .video-grid, .article-grid { grid-template-columns: repeat(2,1fr); }
  .metrics { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(78%, 320px); background: #fff;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 90px 30px; gap: 22px; transform: translateX(105%); transition: var(--trans);
    box-shadow: -20px 0 60px rgba(0,0,0,.2); z-index: 905;
  }
  .nav-menu.open { transform: none; }
  .nav-menu a { color: var(--ink) !important; font-size: 1.1rem; }
  .burger { display: block; z-index: 910; }
  .nav-cta .btn { display: none; }
  .grid-3, .grid-2, .steps, .testimonials, .video-grid, .article-grid, .perks, .metrics, .footer-grid { grid-template-columns: 1fr; }
  .wa-float { width: 56px; height: 56px; }
  .hero { min-height: auto; }
  .section { padding: 56px 0; }
}

/* =========================================================================
   Compatibilidade com o menu nativo do WordPress (wp_nav_menu gera <ul><li>)
   ========================================================================= */
.nav-menu li { position: relative; }
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu a.active::after { width: 100%; }
/* Página única: compensa o cabeçalho fixo ao rolar até as âncoras */
.anchor { scroll-margin-top: 92px; }
/* Logo customizado enviado pelo cliente (Personalizar → Identidade) */
.custom-logo-link { display: inline-flex; align-items: center; margin: 0; }
/* Placa branca do logo no rodapé (fundo escuro) */
.footer-brand .logo-plate { display: inline-block; background: #fff; padding: 14px 22px; border-radius: 14px; margin-bottom: 16px; }
.footer-brand .logo-plate img { height: 84px; width: auto; max-width: 260px; object-fit: contain; display: block; margin: 0; }
/* Conteúdo de artigo (single post) */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p, .article-body ul, .article-body ol { margin-bottom: 18px; }
.article-body h2, .article-body h3 { margin: 28px 0 12px; }
.article-body img { border-radius: var(--radius-sm); margin: 20px 0; }
.article-body blockquote { border-left: 4px solid var(--accent); padding-left: 18px; font-style: italic; color: var(--ink); margin: 20px 0; }
