/* ============================================================
   Dr. Cláudio Vieira — Tema WordPress Customizado
   Versão: 1.0.0 | Autor: Anima Render Pro
   ============================================================ */

/* ─── FONTES SELF-HOSTED ─────────────────────────────────────────────────────── */
@font-face{ 
  font-family: 'Inter';
  src: url('/wp-content/themes/drclaudio-theme-v3/assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
 }
@font-face{ 
  font-family: 'Inter';
  src: url('/wp-content/themes/drclaudio-theme-v3/assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
 }
@font-face{ 
  font-family: 'Inter';
  src: url('/wp-content/themes/drclaudio-theme-v3/assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
 }
@font-face{ 
  font-family: 'Inter';
  src: url('/wp-content/themes/drclaudio-theme-v3/assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
 }
/* Playfair Display removida — site usa apenas Inter */
/* @font-face playfair-600 desativado */
/*
  font-style: normal;
  font-display: swap;
}
*/
/* @font-face playfair-700 desativado */
/*
  font-style: normal;
  font-display: swap;
}

/* ─── VARIÁVEIS CSS ──────────────────────────────────────────────────────────── */
:root {
  --color-primary:     #0077CC;
  --color-primary-dk:  #005FA3;
  --color-dark:        #003366;
  --color-accent:      #85cbcb; /* WCAG AA corrigido: era #7EC8C8 (4.36:1 FAIL) → #85cbcb (4.52:1 AA sobre #004D99) */
  --color-accent-dk:   #6ab8b8; /* WCAG AA corrigido: hover accent */
  --color-text:        #1A1A2E;
  --color-text-muted:  #5A6A7A;
  --color-bg:          #FFFFFF;
  --color-bg-alt:      #F5F8FC;
  --color-border:      #E2EAF0;
  --color-white:       #FFFFFF;
  --color-whatsapp:    #157a39; /* WCAG AA corrigido: era #1a9e4a (3.48:1 FAIL) → #157a39 (5.42:1 AA) */
  --color-whatsapp-dk: #116630; /* WCAG AA corrigido: hover whatsapp */

  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);

  --transition: 0.2s ease;

  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);

  --header-h: 72px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* evita scroll horizontal no mobile */
}

body {
  overflow-x: hidden; /* evita scroll horizontal no mobile */
  padding-top: var(--header-h); /* compensa navbar fixed */
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section--alt { background: var(--color-bg-alt); }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: .5rem;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section__desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

/* ─── BOTÕES ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,119,204,.3);
}
.btn--primary:hover { background: var(--color-primary-dk); color: var(--color-white); }

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: var(--color-white); }

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding-inline: .5rem;
}
.btn--ghost:hover { text-decoration: underline; }

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(26,158,74,.35);
}
.btn--whatsapp:hover { background: var(--color-whatsapp-dk); color: var(--color-white); }

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 2rem; font-size: 1.0625rem; }

/* ─── NAVBAR ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  width: 100%;
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}
/* Logo: exibe a 180x37 natural; CSS escala para altura máxima de 44px mantendo proporção */
.navbar__logo img { height: 44px; width: auto; max-width: 220px; }
.navbar__logo .custom-logo { height: 44px; width: auto; max-width: 220px; }

.navbar__menu { flex: 1; }
.navbar__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.navbar__list li a {
  display: block;
  padding: .5rem .75rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar__list li a:hover,
.navbar__list li.current-menu-item > a,
.navbar__list li.current-page-ancestor > a {
  color: var(--color-primary);
  background: rgba(0,119,204,.06);
  text-decoration: none;
}
.navbar__cta { margin-left: auto; }

/* Botão CTA WhatsApp visível no topo do mobile (ao lado do hambúrguer) */
.navbar__mobile-top-cta {
  display: none; /* oculto no desktop */
  align-items: center;
  gap: .375rem;
  padding: .5rem .875rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
  margin-left: auto;
  margin-right: .5rem;
  text-decoration: none;
  color: #fff;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 1rem var(--container-pad) 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - var(--header-h));
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  box-sizing: border-box;
}
.navbar__mobile.is-open { display: block; }
.navbar__mobile-list li a {
  display: block;
  white-space: normal;
  word-break: break-word;
}
.navbar__mobile-cta {
  display: none !important; /* removido — botão já existe no topo do navbar */
}
.navbar__mobile-list { list-style: none; margin-bottom: 1rem; }
.navbar__mobile-list li a {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #004D99 100%);
  color: var(--color-white);
  padding-block: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .75rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}
.hero__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__actions .btn--outline { border-color: rgba(255,255,255,.5); color: var(--color-white); }
.hero__actions .btn--outline:hover { background: rgba(255,255,255,.1); }

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat { text-align: center; }
.hero__stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--color-accent); line-height: 1.2; }
.hero__stat span { font-size: .8125rem; color: rgba(255,255,255,.7); }

.hero__image { position: relative; }
.hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-white);
  color: var(--color-text);
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-md);
  font-size: .875rem;
}
.hero__badge svg { color: var(--color-primary); flex-shrink: 0; }
.hero__badge strong { display: block; font-weight: 600; color: var(--color-dark); }
.hero__badge span { font-size: .8125rem; color: var(--color-text-muted); }
/* Crédito da foto no hero principal */
.hero__figure .hero-img-credit { color: rgba(255,255,255,.6); text-align: right; }

/* ─── ESPECIALIDADES ─────────────────────────────────────────────────────────── */
.especialidades__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.esp-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.esp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.esp-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: .875rem;
  background: rgba(0,119,204,.06);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.esp-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.esp-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: .75rem;
}
.esp-card__desc {
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.esp-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-primary);
}
.esp-card__link:hover { text-decoration: underline; }

/* ─── SOBRE ──────────────────────────────────────────────────────────────────── */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.sobre__image { margin: 0; }
.sobre__image picture {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sobre__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 800 / 908;
  display: block;
}
.sobre__content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.sobre__credentials {
  list-style: none;
  margin-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.sobre__credentials li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--color-text);
}
.sobre__credentials li svg { color: var(--color-primary); flex-shrink: 0; margin-top: .2em; }

/* ─── POSTS GRID ─────────────────────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.posts-grid--wide { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

.post-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.post-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__img-wrap img { transform: scale(1.03); }

.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .8125rem;
  color: var(--color-text-muted);
}
.post-card__cat {
  background: rgba(0,119,204,.08);
  color: var(--color-primary);
  padding: .2em .6em;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.post-card__title { font-size: 1.0625rem; font-weight: 600; color: var(--color-dark); margin-bottom: .625rem; line-height: 1.4; }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--color-primary); text-decoration: none; }
.post-card__excerpt { font-size: .9375rem; color: var(--color-text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.post-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.post-card__author { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--color-text-muted); }
.post-card__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.post-card__reading { font-size: .8125rem; color: var(--color-text-muted); }
.post-card__read-more { font-size: .875rem; font-weight: 600; color: var(--color-primary); }

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-preview { overflow-x: hidden; }
.faq-preview__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.faq-preview__header,
.faq-preview__list,
.faq-preview__cta {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.faq-preview__cta { margin-top: 2rem; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; color: var(--color-primary); transition: transform var(--transition); }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer {
  padding-bottom: 1.125rem;
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-item__answer[hidden] { display: none; }

.faq-list .faq-item:first-child { border-top: 1px solid var(--color-border); }

/* ─── CTA SECTION ────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #004D99 100%);
  color: var(--color-white);
  padding-block: 4rem;
}
.cta-section .text-center { text-align: center; }
.cta-section__desc {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-block: .75rem 1.75rem;
  line-height: 1.6;
}
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .5rem;
}
.cta-section__content p { color: rgba(255,255,255,.8); max-width: 480px; }
.cta-section__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-section__actions .btn--outline { border-color: rgba(255,255,255,.5); color: var(--color-white); }
.cta-section__actions .btn--outline:hover { background: rgba(255,255,255,.1); }

/* ─── MODAL ──────────────────────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem 2rem;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: var(--color-border); color: var(--color-text); }
.modal__title { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; color: var(--color-dark); margin-bottom: .25rem; }
.modal__subtitle { font-size: .875rem; color: var(--color-text-muted); margin-bottom: 1.25rem; }

/* ─── FORMULÁRIO ─────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: .875rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: .375rem;
}
.form-group label span { color: var(--color-primary); }
.form-group input {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,119,204,.12);
}
.form-group input.is-error { border-color: #E53E3E; }
.form-group--hidden { display: none; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.form-check input[type="checkbox"] { margin-top: .2em; flex-shrink: 0; accent-color: var(--color-primary); }
.form-check a { color: var(--color-primary); }

.form-feedback {
  margin-top: 1rem;
  padding: .875rem 1rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 500;
  display: none;
}
.form-feedback.is-success { display: block; background: #F0FFF4; color: #276749; border: 1px solid #9AE6B4; }
.form-feedback.is-error   { display: block; background: #FFF5F5; color: #C53030; border: 1px solid #FEB2B2; }

/* ─── FOOTER (estilo Visare) ───────────────────────────────────────────────────────────── */
.site-footer {
  background: #0a1f3c;
  color: rgba(255,255,255,.75);
  font-size: .9375rem;
}

/* Área principal: logo + colunas */
.footer-main { padding: clamp(3rem,6vw,5rem) 0 2.5rem; }
.footer-main__inner {
  display: grid;
  grid-template-columns: 1.6fr 3fr;
  gap: 3rem;
  align-items: start;
}

/* Logo + tagline */
.footer-brand__logo img { filter: brightness(0) invert(1); opacity: .9; margin-bottom: 1rem; }
.footer-brand__tagline { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); }

/* Nav de colunas */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Título de cada coluna */
.footer-nav__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: default;
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-nav__chevron { display: none; transition: transform .3s; flex-shrink: 0; }
.footer-nav__heading[aria-expanded="true"] .footer-nav__chevron { transform: rotate(180deg); }

/* Lista de links */
.footer-nav__list { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-nav__list a,
.footer-nav__list li {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-nav__list a:hover { color: var(--color-white); text-decoration: none; }

/* Barra de endereço */
.footer-address {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 2rem 0;
}
.footer-address__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}
.footer-address__col strong {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-address__col p,
.footer-address__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.footer-address__col a:hover { color: var(--color-white); text-decoration: none; }
.footer-address__map-link {
  display: block;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-address__map-link:hover { opacity: .85; }
.footer-address__map-link p { margin: 0; }

/* Redes sociais */
.footer-social { display: flex; gap: .625rem; margin-top: .75rem; }
.footer-social__link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  transition: background var(--transition), color var(--transition);
}
.footer-social__link:hover { background: var(--color-primary); color: var(--color-white); }

/* Barra inferior */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom__left p { font-size: .8125rem; color: rgba(255,255,255,.6); line-height: 1.6; } /* WCAG AA: era .45=4.29:1 FAIL → .6=6.63:1 AA */
.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.6); /* WCAG AA: era .45=4.29:1 FAIL → .6=6.63:1 AA */
}
.footer-bottom__right a { color: rgba(255,255,255,.65); } /* WCAG AA: mantido acima de 4.5:1 */
.footer-bottom__right a:hover { color: var(--color-white); }
.footer-bottom__right strong { color: rgba(255,255,255,.75); }

/* MOBILE: accordion do footer */
@media (max-width: 767px) {
  .footer-main__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: 1fr; gap: 0; }
  .footer-nav__col {
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: .75rem 0;
  }
  .footer-nav__heading {
    cursor: pointer;
    margin-bottom: 0;
    padding: .25rem 0;
  }
  .footer-nav__chevron { display: block; }
  .footer-nav__list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding-top: 0;
  }
  .footer-nav__list.is-open {
    max-height: 400px;
    padding-top: .75rem;
    padding-bottom: .5rem;
  }
  .footer-address__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .footer-bottom__right { flex-direction: column; align-items: flex-start; gap: .5rem; }
}


/* ─── SAIU NA MÍDIA ─────────────────────────────────────────────────────────── */
.midia { background: var(--color-bg); }

.midia__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.midia__card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.midia__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.midia__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.midia__card-logo {
  margin-bottom: 1.25rem;
}
.midia__card-logo svg { display: block; }

.midia__card-body { flex: 1; }

/* Badge colorido do portal — cor via CSS custom properties injetadas inline */
.midia__card-portal-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--badge-bg, #1a5276);
  color: var(--badge-fg, #fff);
  border-radius: 4px;
  padding: .25rem .6rem .25rem .5rem;
  margin-bottom: .85rem;
  max-width: 100%;
}
.midia__card-portal-badge svg,
.midia__card-favicon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 2px;
  object-fit: contain;
}
.midia__card-portal-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1;
  color: var(--badge-fg, #fff);
  white-space: nowrap;
}

.midia__card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-heading);
  margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.midia__card-excerpt {
  font-size: .875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.midia__card-date {
  font-size: .8125rem;
  color: var(--color-text-muted);
}

.midia__card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.midia__card:hover .midia__card-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .midia__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .midia__grid { grid-template-columns: 1fr; }
}

/* Página Dr. Cláudio na Mídia */
.midia-page__body {
  padding-block: 3rem 4rem;
}
.midia-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.midia-filter__btn {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  padding: .4em 1em;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  font-family: inherit;
}
.midia-filter__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.midia-filter__btn--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.midia-page__grid {
  grid-template-columns: repeat(3, 1fr);
}
.midia-page__empty {
  text-align: center;
  padding: 3rem;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .midia-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .midia-page__grid { grid-template-columns: 1fr; }
  .midia-filter { gap: .35rem; }
}

/* ─── SINGLE POST ────────────────────────────────────────────────────────────── */
.post-hero { background: var(--color-bg-alt); padding-bottom: 0; }
.post-hero .container { padding-block: 2rem; }
.post-hero__cat {
  display: inline-block;
  background: rgba(0,119,204,.08);
  color: var(--color-primary);
  padding: .25em .75em;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.post-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.post-hero__meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.post-hero__author { display: flex; align-items: center; gap: .875rem; }
.post-hero__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.post-hero__author-name { display: block; font-weight: 600; font-size: .9375rem; color: var(--color-text); }
.post-hero__author-title { font-size: .8125rem; color: var(--color-text-muted); }
.post-hero__info { display: flex; align-items: center; gap: 1.25rem; font-size: .875rem; color: var(--color-text-muted); }
.post-hero__info time, .post-hero__info span { display: flex; align-items: center; gap: .375rem; }
.post-hero__img {
  margin-top: 2rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.post-hero__img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}
.post-hero__img-credit {
  font-size: .65rem;
  color: var(--color-text-muted);
  text-align: right;
  margin-top: .25rem;
  opacity: .55;
  letter-spacing: .02em;
  line-height: 1.2;
}

.post-layout {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 2.5rem;
  padding-block: 3rem;
  align-items: start;
}

.post-toc {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.post-toc__inner {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.post-toc__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
#tocNav { font-size: .875rem; }
#tocNav a { display: block; padding: .3rem 0; color: var(--color-text-muted); border-left: 2px solid transparent; padding-left: .75rem; transition: color var(--transition), border-color var(--transition); }
#tocNav a:hover, #tocNav a.is-active { color: var(--color-primary); border-left-color: var(--color-primary); text-decoration: none; }
#tocNav .toc-h3 { padding-left: 1.5rem; font-size: .8125rem; }

.post-content { min-width: 0; }
.post-content__body { font-size: 1.0625rem; line-height: 1.8; color: var(--color-text); }
.post-content__body h2 { font-family: var(--font-heading); font-size: 1.625rem; font-weight: 700; color: var(--color-dark); margin-block: 2rem 1rem; }
.post-content__body h3 { font-size: 1.25rem; font-weight: 600; color: var(--color-dark); margin-block: 1.5rem .75rem; }
.post-content__body p { margin-bottom: 1.25rem; }
.post-content__body ul, .post-content__body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content__body ul { list-style: disc; }
.post-content__body ol { list-style: decimal; }
.post-content__body li { margin-bottom: .5rem; }
.post-content__body a { color: var(--color-primary); text-decoration: underline; }
.post-content__body blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.5rem;
  background: rgba(0,119,204,.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: 1.5rem;
  font-style: italic;
  color: var(--color-text-muted);
}
.post-content__body img { border-radius: var(--radius-md); margin-block: 1.5rem; }
.post-content__body table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; font-size: .9375rem; }
.post-content__body th, .post-content__body td { padding: .75rem 1rem; border: 1px solid var(--color-border); text-align: left; }
.post-content__body th { background: var(--color-bg-alt); font-weight: 600; }

/* ─── AI SUMMARY BOX — Estilo O Globo ──────────────────────────────────────── */
/* Especificidade alta para sobrescrever Elementor e outros plugins */
.post-content .ai-summary-box,
.post-content__body .ai-summary-box,
#aiSummaryBox,
.ai-summary-box {
  border: 1.5px solid #1a5fa8 !important;
  border-radius: 6px !important;
  margin-bottom: 2rem !important;
  overflow: hidden !important;
  font-family: inherit !important;
  background: transparent !important;
  padding: 0 !important;
}

/* Cabeçalho azul sólido */
.post-content .ai-summary-box__header,
.post-content__body .ai-summary-box__header,
#aiSummaryBox .ai-summary-box__header,
.ai-summary-box__header {
  background: #1a5fa8 !important;
  background-color: #1a5fa8 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: .85rem 1.1rem .85rem 1.25rem !important;
  gap: .75rem !important;
}
.ai-summary-box__header-left {
  display: flex !important;
  flex-direction: column !important;
  gap: .15rem !important;
  flex: 1 !important;
}
.ai-summary-box__title {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  line-height: 1.1 !important;
  display: block !important;
}
.ai-summary-box__subtitle {
  font-size: .78rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.82) !important;
  letter-spacing: .01em !important;
  line-height: 1.3 !important;
  display: block !important;
}
.ai-summary-box__header-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  opacity: .92 !important;
}

/* Botão de toggle — fundo branco, texto azul em caixa alta */
.post-content .ai-summary-box__toggle,
.post-content__body .ai-summary-box__toggle,
#aiSummaryBox .ai-summary-box__toggle,
.ai-summary-box__toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  width: 100% !important;
  padding: .7rem 1.25rem !important;
  background: #fff !important;
  background-color: #fff !important;
  border: none !important;
  border-top: 1.5px solid #1a5fa8 !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: background .18s ease !important;
  box-shadow: none !important;
}
.ai-summary-box__toggle:hover,
.ai-summary-box__toggle:focus-visible {
  background: #f0f6ff !important;
  outline: none !important;
}
.ai-summary-box__toggle-text {
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: #1a5fa8 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.ai-summary-box__chevron {
  color: #1a5fa8 !important;
  transition: transform .3s ease;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.ai-summary-box__toggle[aria-expanded="true"] .ai-summary-box__chevron {
  transform: rotate(180deg) !important;
}

/* Conteúdo oculto */
.post-content .ai-summary-box__content,
.post-content__body .ai-summary-box__content,
#aiSummaryBox .ai-summary-box__content,
.ai-summary-box__content {
  padding: 1rem 1.25rem 1.1rem !important;
  background: #fff !important;
  background-color: #fff !important;
  border-top: 1px solid #dde8f5 !important;
}
.ai-summary-box__content[hidden] { display: none !important; }
.ai-summary-box__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: .55rem !important;
}
.ai-summary-box__list li {
  font-size: .9375rem !important;
  color: #1a1a1a !important;
  line-height: 1.6 !important;
  padding-left: 1.1rem !important;
  position: relative !important;
}
.ai-summary-box__list li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: .6em !important;
  width: 5px !important;
  height: 5px !important;
  background: #1a5fa8 !important;
  border-radius: 50% !important;
}
.ai-summary-box__disclaimer {
  display: flex !important;
  align-items: center !important;
  gap: .4rem !important;
  font-size: .72rem !important;
  color: #888 !important;
  margin: .85rem 0 0 !important;
  padding-top: .75rem !important;
  border-top: 1px solid #e8eef6 !important;
}
.ai-summary-box__disclaimer svg { flex-shrink: 0 !important; fill: #aaa !important; }

/* ─── COMPARTILHAMENTO ───────────────────────────────────────────────────────── */
.post-share {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-block: 2rem;
}
.post-share__label { font-size: .875rem; font-weight: 600; color: var(--color-text-muted); }
.post-share__btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}
.post-share__btn:hover { transform: scale(1.1); opacity: .9; }
.post-share__btn--wa  { background: var(--color-whatsapp); }
.post-share__btn--fb  { background: #1877F2; }
.post-share__btn--li  { background: #0A66C2; }

/* ─── AUTHOR BOX ─────────────────────────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 1.5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2.5rem;
}
.author-box__avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box__name { font-size: 1.0625rem; font-weight: 700; color: var(--color-dark); margin-bottom: .25rem; }
.author-box__role { font-size: .875rem; color: var(--color-primary); font-weight: 600; margin-bottom: .625rem; }
.author-box__bio { font-size: .9375rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: .875rem; }
.author-box__link { font-size: .9375rem; font-weight: 600; color: var(--color-primary); }

/* ─── SIDEBAR DO POST ────────────────────────────────────────────────────────── */
.post-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, #004D99 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.sidebar-cta h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; }
.sidebar-cta p { font-size: .9375rem; color: rgba(255,255,255,.8); margin-bottom: 1.25rem; }
.sidebar-cta__info { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.7); margin-top: .875rem; }
.sidebar-cta__info a { color: rgba(255,255,255,.8); }
.sidebar-cta__info a:hover { color: var(--color-white); }

/* ─── RELATED POSTS ──────────────────────────────────────────────────────────── */
.related-posts { background: var(--color-bg-alt); }
.related-posts__cta { margin-top: 2rem; text-align: center; }

/* ─── BREADCRUMBS ────────────────────────────────────────────────────────────── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs .sep { color: var(--color-border); }
.breadcrumbs .current { color: var(--color-text); }

/* ─── ARCHIVE ────────────────────────────────────────────────────────────────── */
.archive-hero { background: var(--color-bg-alt); padding-block: 3rem; border-bottom: 1px solid var(--color-border); }
.archive-hero__title { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--color-dark); margin-bottom: .75rem; }
.archive-hero__desc { font-size: 1.0625rem; color: var(--color-text-muted); max-width: 640px; }
.archive-layout { padding-block: 3rem; }

/* ─── PÁGINA AUTOR ───────────────────────────────────────────────────────────── */
.autor-profile__header {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding-block: 3rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
}
.autor-profile__img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-md); }
.autor-profile__title h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-dark); margin-bottom: .375rem; }
.autor-profile__role { font-size: 1.0625rem; color: var(--color-primary); font-weight: 600; margin-bottom: .25rem; }
.autor-profile__crm { font-size: .9375rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.autor-profile__social { display: flex; gap: .75rem; }
.autor-profile__social a { color: var(--color-text-muted); transition: color var(--transition); }
.autor-profile__social a:hover { color: var(--color-primary); }
.autor-profile__content h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; }
.autor-profile__content h3 { font-size: 1.125rem; font-weight: 600; color: var(--color-dark); margin-block: 1.5rem .75rem; }
.autor-profile__content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.autor-profile__content ul { list-style: disc; padding-left: 1.5rem; }
.autor-profile__content li { margin-bottom: .5rem; color: var(--color-text-muted); }

/* ─── CONTATO ────────────────────────────────────────────────────────────────── */
.contato-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 3rem; }
.page-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--color-dark); margin-bottom: .75rem; }
.page-desc { font-size: 1.0625rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.contato-cards { display: flex; flex-direction: column; gap: 1rem; }
.contato-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.contato-card svg { color: var(--color-primary); flex-shrink: 0; margin-top: .1em; }
.contato-card h3 { font-size: .9375rem; font-weight: 600; color: var(--color-dark); margin-bottom: .25rem; }
.contato-card p { font-size: .9375rem; color: var(--color-text-muted); }
.contato-card a { color: var(--color-primary); }

/* ─── PAGINAÇÃO ──────────────────────────────────────────────────────────────── */
.pagination { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 2rem; }
.pagination .nav-links { display: flex; gap: .5rem; align-items: center; }
.pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.pagination .page-numbers:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); text-decoration: none; }
.pagination .page-numbers.current { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.pagination .page-numbers.dots { border: none; }

/* ─── GUTENBERG BLOCKS ───────────────────────────────────────────────────────── */
.wp-block-image { margin-block: 1.5rem; }
.wp-block-image img { border-radius: var(--radius-md); }
.wp-block-quote { border-left: 4px solid var(--color-primary); padding: 1rem 1.5rem; background: rgba(0,119,204,.04); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-block: 1.5rem; }
.wp-block-separator { border: none; border-top: 1px solid var(--color-border); margin-block: 2rem; }
.wp-block-table { margin-block: 1.5rem; }
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table th, .wp-block-table td { padding: .75rem 1rem; border: 1px solid var(--color-border); }
.wp-block-table th { background: var(--color-bg-alt); font-weight: 600; }
.wp-block-code { background: #1A1A2E; color: #E2E8F0; padding: 1.25rem; border-radius: var(--radius-md); font-size: .875rem; overflow-x: auto; margin-block: 1.5rem; }
.wp-block-pullquote { border-top: 4px solid var(--color-primary); border-bottom: 4px solid var(--color-primary); padding: 2rem; text-align: center; margin-block: 2rem; }
.wp-block-pullquote blockquote { border: none; background: none; padding: 0; }

/* ─── UTILITÁRIOS ────────────────────────────────────────────────────────────── */
.no-posts { grid-column: 1 / -1; text-align: center; padding: 3rem; color: var(--color-text-muted); }
.page-default { padding-block: 4rem; }
.page-content { max-width: 800px; }

/* ─── RESPONSIVO ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-toc, .post-sidebar { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__menu, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__mobile-top-cta { display: inline-flex; }
  /* No mobile: logo menor, flex sem wrap, CTA e toggle com flex-shrink:0 */
  .navbar__inner { overflow: visible; flex-wrap: nowrap; gap: .5rem; }
  .navbar__mobile-top-cta { margin-left: auto; margin-right: 0; flex-shrink: 0; }
  .navbar__toggle { flex-shrink: 0; margin-left: 0; }
  .navbar__logo img, .navbar__logo .custom-logo { height: 32px; max-width: 160px; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { order: -1; }
  .hero__stats { gap: 1rem; }
  .hero__stat strong { font-size: 1.25rem; }

  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__image { display: block; width: 100%; max-width: 360px; margin: 0 auto 1.5rem; border-radius: 12px; overflow: hidden; }

  .faq-preview { overflow-x: hidden; }
  .faq-preview__inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .faq-preview__header { position: static !important; }

  .cta-section__inner { flex-direction: column; text-align: center; }
  .cta-section__actions { justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .autor-profile__header { flex-direction: column; align-items: center; text-align: center; }
  .contato-layout { grid-template-columns: 1fr; }

  .post-hero__meta { flex-direction: column; align-items: flex-start; }
  .author-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .posts-grid { grid-template-columns: 1fr; }
  .especialidades__grid { grid-template-columns: 1fr; }
  .modal__box { padding: 1.75rem 1.25rem; }
}

/* ─── ACESSIBILIDADE ─────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: .5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ─── PRINT ──────────────────────────────────────────────────────────────────── */
@media print {
  .navbar, .footer, .modal, .post-toc, .post-sidebar, .post-share, .related-posts { display: none !important; }
  .post-layout { grid-template-columns: 1fr; }
  body { font-size: 12pt; }
}

/* ─── FAQ DO ARTIGO ──────────────────────────────────────────────────────────── */
.post-faq {
  margin: 2.5rem 0;
  background: #fff;
}

.post-faq__title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-heading, #1a2b4a);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.post-faq__title svg {
  color: var(--color-primary, #1a5fa8);
  flex-shrink: 0;
}

.post-faq__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: .9rem;
  color: var(--color-text-muted, #6b7280);
  font-style: italic;
}

.post-faq__item {
  border-bottom: 1px solid #d1d5db;
}

.post-faq__item:first-child {
  border-top: 1px solid #d1d5db;
}

.post-faq__question {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 1.1rem 0 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  text-align: left !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: #1a2b4a !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1.4 !important;
  transition: color .2s ease;
}

.post-faq__question:hover {
  color: var(--color-primary, #1a5fa8) !important;
  background: transparent !important;
}

.post-faq__question[aria-expanded="true"] {
  color: var(--color-primary, #1a5fa8) !important;
  background: transparent !important;
}

.post-faq__question span {
  flex: 1;
  padding-right: 1rem;
}

.post-faq__chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--color-primary, #1a5fa8);
  width: 20px;
  height: 20px;
}

.post-faq__question[aria-expanded="true"] .post-faq__chevron {
  transform: rotate(180deg);
}

/* FAQ Accordion — fechado por padrão, abre com classe .is-open via JS */
.post-faq__answer {
  display: block !important;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height .35s ease;
  visibility: hidden;
}

.post-faq__answer.is-open {
  max-height: 800px;
  visibility: visible;
}

/* Compat: [hidden] também fecha (para browsers que não rodam JS) */
.post-faq__answer[hidden] {
  display: block !important;
  max-height: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
}

.post-faq__answer-inner {
  padding: 0 0 1.1rem;
  font-size: .9375rem;
  line-height: 1.7;
  color: #555;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 640px) {
  .post-faq__question {
    padding: .9rem 0 !important;
    font-size: .9rem !important;
  }
  .post-faq__answer-inner {
    padding: 0 0 .9rem;
  }
}



/* ═══════════════════════════════════════════════════════════════════════════
   POSTS RELACIONADOS — "Continue Lendo"
   ═══════════════════════════════════════════════════════════════════════════ */
.related-posts {
  background: #f8fafc;
  padding: 3.5rem 0 4rem;
  border-top: 1px solid #e5e7eb;
}

.related-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.related-posts__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-heading, #1a2b4a);
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.related-posts__title svg {
  color: var(--color-primary, #1a5fa8);
  flex-shrink: 0;
}

.related-posts__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-primary, #1a5fa8);
  text-decoration: none;
  white-space: nowrap;
}

.related-posts__link:hover {
  text-decoration: underline;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}

.related-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.related-card__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: var(--color-primary, #1a5fa8);
}

.related-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.related-card:hover .related-card__img {
  transform: scale(1.04);
}

.related-card__body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card__cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-primary, #1a5fa8);
  background: #dbeafe;
  padding: .2rem .55rem;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: .6rem;
}

.related-card__title {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-heading, #1a2b4a);
  margin: 0 0 .5rem;
  font-family: 'Inter', sans-serif;
}

.related-card__title a {
  color: inherit;
  text-decoration: none;
}

.related-card__title a:hover {
  color: var(--color-primary, #1a5fa8);
}

.related-card__excerpt {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 .75rem;
  flex: 1;
}

.related-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid #f3f4f6;
}

.related-card__date {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: #9ca3af;
}

.related-card__read {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-primary, #1a5fa8);
  text-decoration: none;
  white-space: nowrap;
}

.related-card__read:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related-posts__grid {
    grid-template-columns: 1fr;
  }
  .related-posts__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PÁGINA AUTOR — Layout 2 colunas
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.autor-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #004E8A 100%);
  padding: 2rem 0 3rem;
  color: #fff;
}
/* Breadcrumb dentro do hero azul — texto claro (cobre tema e Rank Math) */
.autor-hero .breadcrumbs,
.autor-hero .rank-math-breadcrumb {
  color: rgba(255,255,255,.7);
}
.autor-hero .breadcrumbs a,
.autor-hero .rank-math-breadcrumb a,
.autor-hero .rank-math-breadcrumb span a {
  color: rgba(255,255,255,.7) !important;
}
.autor-hero .breadcrumbs a:hover,
.autor-hero .rank-math-breadcrumb a:hover {
  color: #fff !important;
}
.autor-hero .breadcrumbs .sep,
.autor-hero .rank-math-breadcrumb .separator {
  color: rgba(255,255,255,.35) !important;
}
.autor-hero .breadcrumbs .current,
.autor-hero .rank-math-breadcrumb .last {
  color: rgba(255,255,255,.9) !important;
}

/* Hero 2 colunas: texto esquerda, foto direita */
.autor-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.autor-hero__info { order: 1; }
.autor-hero__photo {
  order: 2;
  flex-shrink: 0;
}
.autor-hero__photo picture {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.autor-hero__img {
  width: 340px;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.autor-hero__name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: .25rem 0 .5rem;
}
.autor-hero__title {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .75rem;
}
.autor-hero__credentials {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.credential-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;
  padding: .25rem .75rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
}
.autor-hero__desc {
  font-size: .9875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1.25rem;
}
.autor-hero__social {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.autor-hero__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  transition: background .2s;
}
.autor-hero__social a:hover {
  background: rgba(255,255,255,.3);
}
@media (max-width: 768px) {
  .autor-hero__grid {
    grid-template-columns: 1fr;
  }
  .autor-hero__photo { order: -1; }
  .autor-hero__img { width: 100%; height: 260px; }
}

/* Layout 2 colunas */
.autor-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

/* Blocos de conteúdo */
.autor-bloco {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 2rem 2.25rem;
  margin-bottom: 1.75rem;
}

.autor-bloco--alt {
  background: #f8fafc;
}

.autor-bloco__title {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading, #1a2b4a);
  font-family: 'Inter', sans-serif;
  margin: 0 0 .4rem;
}

.autor-bloco__title svg {
  color: var(--color-primary, #1a5fa8);
  flex-shrink: 0;
}

.autor-bloco__subtitle {
  font-size: .9rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.autor-bloco__cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* Sidebar */
.autor-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.autor-sidebar__cta {
  background: linear-gradient(135deg, #0f2a5e 0%, #1a5fa8 100%);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  color: #fff;
  text-align: center;
}

.autor-sidebar__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .6rem;
  font-family: 'Inter', sans-serif;
}

.autor-sidebar__desc {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.autor-sidebar__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin: .75rem 0 0;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}

.autor-sidebar__tel a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.autor-sidebar__tel a:hover {
  text-decoration: underline;
}

.autor-sidebar__info,
.autor-sidebar__credentials {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.autor-sidebar__info-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-primary, #1a5fa8);
  margin: 0 0 .75rem;
  font-family: 'Inter', sans-serif;
}

.autor-sidebar__info-list,
.autor-sidebar__cred-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.autor-sidebar__info-list li,
.autor-sidebar__cred-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: #374151;
  line-height: 1.4;
}

.autor-sidebar__info-list svg,
.autor-sidebar__cred-list svg {
  color: var(--color-primary, #1a5fa8);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .autor-layout {
    grid-template-columns: 1fr;
  }
  .autor-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .autor-sidebar__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .autor-sidebar {
    grid-template-columns: 1fr;
  }
  .autor-bloco {
    padding: 1.5rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG — Hero, Destaque, Filtros e Grid
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.blog-hero {
  background: linear-gradient(135deg, #0f2a5e 0%, #1a5fa8 100%);
  padding: 2.5rem 0 3rem;
  color: #fff;
}
/* Breadcrumb legível sobre fundo azul escuro do blog-hero */
.blog-hero .breadcrumbs { color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.blog-hero .breadcrumbs a { color: rgba(255,255,255,.85); }
.blog-hero .breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.blog-hero .breadcrumbs .sep { color: rgba(255,255,255,.4); }
.blog-hero .breadcrumbs .current { color: #fff; font-weight: 600; }

.blog-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: .5rem 0 .5rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.blog-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}

/* Post em destaque */
.blog-featured {
  padding: 2.5rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.blog-featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.blog-featured__img-wrap {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-featured__inner:hover .blog-featured__img {
  transform: scale(1.03);
}

.blog-featured__body {
  padding: 2rem 2rem 2rem 0;
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: .8rem;
  color: #6b7280;
}

.blog-featured__badge {
  background: var(--color-primary, #1a5fa8);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .6rem;
  border-radius: 4px;
}

.blog-featured__cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-primary, #1a5fa8);
  text-decoration: none;
  background: #dbeafe;
  padding: .2rem .55rem;
  border-radius: 4px;
}

.blog-featured__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--color-heading, #1a2b4a);
  line-height: 1.3;
  margin: 0 0 .75rem;
  font-family: 'Inter', sans-serif;
}

.blog-featured__title a {
  color: inherit;
  text-decoration: none;
}

.blog-featured__title a:hover {
  color: var(--color-primary, #1a5fa8);
}

.blog-featured__excerpt {
  font-size: .95rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

/* Filtros por tópicos */
.blog-filters {
  background: #fff;
  border-bottom: 2px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 70px;
  z-index: 50;
}

.blog-filters__list {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.blog-filters__btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: #374151;
  background: #f3f4f6;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

.blog-filters__btn:hover {
  background: #dbeafe;
  color: var(--color-primary, #1a5fa8);
  border-color: #bfdbfe;
}

.blog-filters__btn.is-active {
  background: var(--color-primary, #1a5fa8);
  color: #fff;
  border-color: var(--color-primary, #1a5fa8);
}

.blog-filters__count {
  background: rgba(0,0,0,.1);
  border-radius: 50px;
  padding: .05rem .4rem;
  font-size: .7rem;
}

.blog-filters__btn.is-active .blog-filters__count {
  background: rgba(255,255,255,.25);
}

/* Grid de posts do blog */
.blog-grid-wrap {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.blog-card__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e5e7eb;
}

.blog-card__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: var(--color-primary, #1a5fa8);
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
  flex-wrap: wrap;
}

.blog-card__cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-primary, #1a5fa8);
  background: #dbeafe;
  padding: .2rem .55rem;
  border-radius: 4px;
  text-decoration: none;
}

.blog-card__meta time {
  font-size: .78rem;
  color: #9ca3af;
}

.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-heading, #1a2b4a);
  margin: 0 0 .5rem;
  font-family: 'Inter', sans-serif;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-primary, #1a5fa8);
}

.blog-card__excerpt {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 .75rem;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.blog-card__reading {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: #9ca3af;
}

.blog-card__read {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-primary, #1a5fa8);
  text-decoration: none;
  white-space: nowrap;
}

.blog-card__read:hover {
  text-decoration: underline;
}

/* Paginação */
.blog-pagination {
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .75rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: #374151;
  background: #f3f4f6;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all .2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--color-primary, #1a5fa8);
  color: #fff;
  border-color: var(--color-primary, #1a5fa8);
}

/* Estado vazio */
.blog-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #9ca3af;
}

.blog-empty svg {
  margin-bottom: 1rem;
  color: #d1d5db;
}

.blog-empty p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Responsivo */
@media (max-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured__inner {
    grid-template-columns: 1fr;
  }
  .blog-featured__body {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
  .blog-filters {
    position: static;
  }
  .blog-filters__list {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .25rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   FAIXA DE PLANOS DE SAÚDE (MARQUEE)
   ═══════════════════════════════════════════════════════════════════════════ */
.health-plans-marquee {
  background: var(--color-primary, #1a5fa8);
  color: #fff;
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollMarquee 40s linear infinite;
  /* Garante que não haja quebra de linha */
  white-space: nowrap;
}

/* Pausa a animação ao passar o mouse (opcional, bom para UX) */
.health-plans-marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
}

/* Adiciona um separador visual entre os planos (um pequeno ponto) */
.marquee-item::after {
  content: "•";
  margin-left: 4rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Desloca exatamente um terço do conteúdo (já que triplicamos os itens) */
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 768px) {
  .health-plans-marquee {
    padding: 1rem 0;
  }
  .marquee-item {
    font-size: .95rem;
  }
  .marquee-content {
    gap: 2.5rem;
    animation-duration: 25s; /* Um pouco mais rápido no mobile */
  }
  .marquee-item::after {
    margin-left: 2.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PÁGINAS DE SERVIÇO — Especialidade / Cirurgia / Exame
   v2.6.0
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero de Serviço ─────────────────────────────────────────────────────── */
.serv-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #004E8A 100%);
  color: #fff;
  padding: 2rem 0 3rem;
}
.serv-hero--cirurgia {
  background: linear-gradient(135deg, var(--color-primary) 0%, #004E8A 100%);
}
.serv-hero--exame {
  background: linear-gradient(135deg, var(--color-primary) 0%, #004E8A 100%);
}
/* Breadcrumb dentro do hero azul — alta legibilidade */
.serv-hero .breadcrumbs {
  color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
  font-size: .875rem;
}
.serv-hero .breadcrumbs a { color: rgba(255,255,255,.85); }
.serv-hero .breadcrumbs a:hover { color: #fff; }
.serv-hero .breadcrumbs .sep { color: rgba(255,255,255,.4); margin: 0 .35rem; }
.serv-hero .breadcrumbs .current { color: #fff; font-weight: 500; }
.serv-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.serv-hero__content { max-width: 640px; }
.serv-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.serv-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .875rem;
}
.serv-hero__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin: 0 0 .5rem;
}
.serv-hero__intro {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 0 1.25rem;
}
.serv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  padding: .65rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}
.serv-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
}
.serv-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.serv-hero__image {
  flex-shrink: 0;
  margin: 0;
  /* overflow removido para legenda aparecer abaixo */
}
.serv-hero__image picture {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.serv-hero__image img {
  display: block;
  width: 460px;
  max-width: 100%;
  height: 304px;
  object-fit: cover;
}

/* Crédito / legenda de imagem no hero */
.hero-img-credit {
  font-size: .75rem;         /* 12px — visível, sem competir com o conteúdo */
  color: rgba(255,255,255,.65);
  text-align: left;
  margin-top: .4rem;
  line-height: 1.4;
  font-style: italic;
  letter-spacing: .01em;
  font-weight: 400;
  display: block;
  width: 100%;
  white-space: nowrap;       /* impede quebra de linha que causava corte */
  overflow: visible;
}
/* Seções de fundo claro (sobre, home) */
.sobre__image .hero-img-credit,
.hero-img-credit--dark {
  color: rgba(0,0,0,.45);
}
/* Foto à direita (esp-list-hero: especialidades, cirurgias, exames) */
.esp-list-hero__hero-img .hero-img-credit,
.serv-hero__image .hero-img-credit {
  text-align: right;
}
/* Foto à esquerda explícita */
.hero-img-credit--left {
  text-align: left;
  white-space: normal;
}
/* Imagem hero grande (exames, cirurgias, especialidades, etc.) */
.esp-list-hero__hero-img {
  flex-shrink: 0;
  margin: 0;
  /* overflow removido para a legenda aparecer abaixo da imagem */
}
.esp-list-hero__hero-img picture {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.esp-list-hero__hero-img img {
  display: block;
  width: 460px;
  max-width: 100%;
  height: 304px;
  object-fit: cover;
}
/* ── Layout 2 colunas de serviço ─────────────────────────────────────────── */
.serv-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  align-items: start;
}
.serv-main { min-width: 0; }

/* ── Blocos de conteúdo ──────────────────────────────────────────────────── */
.serv-bloco {
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, #e2eaf0);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.serv-bloco--alt { background: var(--color-bg-alt, #f5f8fc); }
.serv-bloco__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark, #003366);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.serv-bloco__title svg { color: var(--color-primary, #0077CC); flex-shrink: 0; }
.serv-bloco__subtitle {
  font-size: .9rem;
  color: var(--color-text-muted, #5a6a7a);
  margin: -.75rem 0 1.25rem;
}
.serv-bloco__body p { margin: 0 0 1rem; line-height: 1.75; color: var(--color-text-muted, #5a6a7a); }
.serv-bloco__body p:last-child { margin-bottom: 0; }
.serv-bloco__note {
  font-size: .85rem;
  color: var(--color-text-muted, #5a6a7a);
  font-style: italic;
  margin-top: 1rem;
}
.serv-bloco__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  white-space: normal;
  text-align: left;
  max-width: 100%;
  word-break: break-word;
}

/* ── Lista de sintomas / pós-op ──────────────────────────────────────────── */
.serv-sintomas-list,
.serv-pos-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .6rem;
}
.serv-sintomas-list__item,
.serv-pos-list__item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--color-text-muted, #5a6a7a);
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, #e2eaf0);
  border-radius: var(--radius-md, 8px);
  padding: .75rem 1rem;
}
.serv-sintomas-list__item svg,
.serv-pos-list__item svg { color: var(--color-primary, #0077CC); flex-shrink: 0; margin-top: 2px; }

/* ── Grid de causas ──────────────────────────────────────────────────────── */
.serv-causas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.serv-causa-card {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, #e2eaf0);
  border-radius: var(--radius-md, 8px);
  padding: .85rem 1rem;
  font-size: .88rem;
  color: var(--color-text-muted, #5a6a7a);
}
.serv-causa-card svg { color: var(--color-primary, #0077CC); flex-shrink: 0; margin-top: 2px; }

/* ── Etapas do procedimento ──────────────────────────────────────────────── */
.serv-etapas { display: flex; flex-direction: column; gap: 1rem; }
.serv-etapa {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.serv-etapa__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-primary, #0077CC);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
}
.serv-etapa__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-dark, #003366);
  margin: 0 0 .3rem;
}
.serv-etapa__desc {
  font-size: .88rem;
  color: var(--color-text-muted, #5a6a7a);
  margin: 0;
  line-height: 1.6;
}

/* ── Grid de lentes ──────────────────────────────────────────────────────── */
.serv-lentes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.serv-lente-card {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, #e2eaf0);
  border-radius: var(--radius-md, 8px);
  padding: 1rem 1.25rem;
}
.serv-lente-card svg { color: var(--color-primary, #0077CC); flex-shrink: 0; margin-top: 2px; }
.serv-lente-card__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-dark, #003366);
  margin: 0 0 .3rem;
}
.serv-lente-card__desc {
  font-size: .83rem;
  color: var(--color-text-muted, #5a6a7a);
  margin: 0;
  line-height: 1.55;
}

/* ── Box de preparo ──────────────────────────────────────────────────────── */
.serv-preparo-box {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: #e8f4e8;
  border: 1px solid #b8ddb8;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.serv-preparo-box svg { color: #2e7d32; flex-shrink: 0; margin-top: 2px; }
.serv-preparo-box p { margin: 0; color: #1b5e20; font-weight: 500; line-height: 1.6; }

/* ── FAQ de serviço ──────────────────────────────────────────────────────── */
.serv-faq__list { display: flex; flex-direction: column; gap: .5rem; }
.serv-faq__item {
  border: 1px solid var(--color-border, #e2eaf0);
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  background: var(--color-bg, #fff);
}
.serv-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-dark, #003366);
  text-align: left;
  transition: background .15s;
}
.serv-faq__question:hover { background: var(--color-bg-alt, #f5f8fc); }
.serv-faq__question[aria-expanded="true"] { background: var(--color-bg-alt, #f5f8fc); }
.serv-faq__chevron {
  flex-shrink: 0;
  color: var(--color-primary, #0077CC);
  transition: transform .25s;
}
.serv-faq__question[aria-expanded="true"] .serv-faq__chevron {
  transform: rotate(180deg);
}
.serv-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.25rem;
}
.serv-faq__answer.is-open {
  max-height: 600px;
  padding: .75rem 1.25rem 1.25rem;
}
.serv-faq__answer[hidden] {
  display: block !important;
  max-height: 0;
  padding: 0 1.25rem;
}
.serv-faq__answer p { margin: 0; font-size: .9rem; color: var(--color-text-muted, #5a6a7a); line-height: 1.7; }

/* ── Grid de blog relacionado ────────────────────────────────────────────── */
.serv-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.serv-blog-card {
  border: 1px solid var(--color-border, #e2eaf0);
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  background: var(--color-bg, #fff);
  transition: box-shadow .2s;
}
.serv-blog-card:hover { box-shadow: 0 4px 16px rgba(0,119,204,.12); }
.serv-blog-card__img-wrap { display: block; overflow: hidden; height: 140px; }
.serv-blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.serv-blog-card:hover .serv-blog-card__img-wrap img { transform: scale(1.04); }
.serv-blog-card__body { padding: 1rem; }
.serv-blog-card__cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary, #0077CC);
  display: block;
  margin-bottom: .4rem;
}
.serv-blog-card__title {
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 .75rem;
}
.serv-blog-card__title a { color: var(--color-dark, #003366); text-decoration: none; }
.serv-blog-card__title a:hover { color: var(--color-primary, #0077CC); }
.serv-blog-card__read { font-size: .82rem; color: var(--color-primary, #0077CC); font-weight: 600; text-decoration: none; }

/* ── Grid de exames relacionados ─────────────────────────────────────────── */
.serv-exames-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem;
}
.serv-exame-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border, #e2eaf0);
  border-radius: var(--radius-md, 8px);
  padding: .85rem 1rem;
  text-decoration: none;
  color: var(--color-dark, #003366);
  transition: border-color .2s, box-shadow .2s;
}
.serv-exame-card:hover { border-color: var(--color-primary, #0077CC); box-shadow: 0 2px 8px rgba(0,119,204,.1); }
.serv-exame-card svg:first-child { color: var(--color-primary, #0077CC); flex-shrink: 0; }
.serv-exame-card div { flex: 1; }
.serv-exame-card strong { display: block; font-size: .88rem; font-weight: 700; }
.serv-exame-card span { display: block; font-size: .78rem; color: var(--color-text-muted, #5a6a7a); }
.serv-exame-card__arrow { color: var(--color-text-muted, #5a6a7a); flex-shrink: 0; }

/* ── Links da sidebar de serviço ─────────────────────────────────────────── */
.serv-sidebar__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.serv-sidebar__links li { border-bottom: 1px solid var(--color-border, #e2eaf0); }
.serv-sidebar__links li:last-child { border-bottom: none; }
.serv-sidebar__links a {
  display: block;
  padding: .6rem 0;
  font-size: .88rem;
  color: var(--color-primary, #0077CC);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.serv-sidebar__links a:hover { color: var(--color-dark, #003366); }

/* ── Responsivo ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .serv-layout { grid-template-columns: 1fr; }
  .serv-hero__inner { grid-template-columns: 1fr; }
  .serv-hero__image { display: none; }
}
@media (max-width: 640px) {
  .serv-bloco { padding: 1.25rem; }
  .serv-bloco__cta {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: .875rem;
    padding: .75rem 1rem;
  }
  .serv-hero { padding: 2rem 0; }
  .serv-sintomas-list,
  .serv-causas-grid,
  .serv-lentes-grid,
  .serv-blog-grid,
  .serv-exames-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG v2.8.0 — Spotlight (3 destaques) + Pesquisa + Tópicos
   ═══════════════════════════════════════════════════════════════ */

/* ── Blog Spotlight ── */
.blog-spotlight { background:#fff; padding:2.5rem 0 2rem; border-bottom:1px solid #e8edf2; }
.blog-spotlight__grid { display:grid; grid-template-columns:1fr 340px; gap:1.5rem; align-items:stretch; }

.blog-spotlight__main { display:block; position:relative; border-radius:12px; overflow:hidden; text-decoration:none; color:inherit; background:#0d1b2a; min-height:420px; }
.blog-spotlight__main-img { position:absolute; inset:0; overflow:hidden; }
.blog-spotlight__main-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease; }
.blog-spotlight__main:hover .blog-spotlight__main-img img { transform:scale(1.04); }
.blog-spotlight__main-img--placeholder { display:flex; align-items:center; justify-content:center; background:#1a5fa8; color:rgba(255,255,255,0.4); }
.blog-spotlight__main::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.4) 50%, transparent 100%); pointer-events:none; }
.blog-spotlight__main-body { position:absolute; bottom:0; left:0; right:0; padding:1.75rem 1.75rem 1.5rem; z-index:2; }
.blog-spotlight__cat { display:inline-block; background:var(--color-primary,#1a5fa8); color:#fff; font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:0.2rem 0.6rem; border-radius:4px; margin-bottom:0.4rem; }
.blog-spotlight__cat--sm { font-size:0.65rem; padding:0.15rem 0.5rem; }
.blog-spotlight__date { display:inline-block; color:rgba(255,255,255,0.7); font-size:0.78rem; margin-left:0.5rem; }
.blog-spotlight__main-title { font-size:1.5rem; font-weight:700; color:#fff; line-height:1.3; margin:0.4rem 0 0.6rem; font-family:'Inter',sans-serif; }
.blog-spotlight__main-excerpt { color:rgba(255,255,255,0.8); font-size:0.9rem; line-height:1.5; margin:0; }

.blog-spotlight__list { display:flex; flex-direction:column; gap:1rem; }
.blog-spotlight__item { display:flex; gap:0.85rem; align-items:flex-start; padding:1rem; border:1px solid #e8edf2; border-radius:10px; text-decoration:none; color:inherit; background:#fff; transition:border-color 0.2s,box-shadow 0.2s; flex:1; }
.blog-spotlight__item:hover { border-color:var(--color-primary,#1a5fa8); box-shadow:0 2px 12px rgba(26,95,168,0.1); }
.blog-spotlight__item-img { flex-shrink:0; width:90px; height:70px; border-radius:8px; overflow:hidden; }
.blog-spotlight__item-img img { width:100%; height:100%; object-fit:cover; display:block; }
.blog-spotlight__item-body { flex:1; min-width:0; }
.blog-spotlight__item-meta { display:flex; align-items:center; gap:0.5rem; margin-bottom:0.35rem; flex-wrap:wrap; }
.blog-spotlight__item-meta time { font-size:0.72rem; color:#6b7280; }
.blog-spotlight__item-title { font-size:0.92rem; font-weight:600; line-height:1.35; color:#0d1b2a; margin:0 0 0.3rem; font-family:'Inter',sans-serif; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.blog-spotlight__item-excerpt { font-size:0.8rem; color:#6b7280; line-height:1.4; margin:0; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

/* ── Blog Controls (Pesquisa + Filtros) ── */
.blog-controls { background:#f8fafc; border-bottom:1px solid #e8edf2; padding:1.25rem 0; }
.blog-search-form { display:flex; gap:0; margin-bottom:1rem; border:1.5px solid #d1d9e0; border-radius:8px; overflow:hidden; background:#fff; transition:border-color 0.2s,box-shadow 0.2s; }
.blog-search-form:focus-within { border-color:var(--color-primary,#1a5fa8); box-shadow:0 0 0 3px rgba(26,95,168,0.12); }
.blog-search-form__input { flex:1; border:none; outline:none; padding:0.7rem 1rem; font-size:0.92rem; font-family:'Inter',sans-serif; color:#0d1b2a; background:transparent; }
.blog-search-form__input::placeholder { color:#9ca3af; }
.blog-search-form__btn { display:flex; align-items:center; gap:0.4rem; padding:0.7rem 1.2rem; background:var(--color-primary,#1a5fa8); color:#fff; border:none; cursor:pointer; font-size:0.88rem; font-weight:600; font-family:'Inter',sans-serif; transition:background 0.2s; white-space:nowrap; }
.blog-search-form__btn:hover { background:#154d8a; }

/* ── Filtros por tópico (pills) ── */
.blog-topics { overflow:hidden; }
.blog-topics__scroll { display:flex; gap:0.5rem; overflow-x:auto; padding-bottom:4px; scrollbar-width:none; -ms-overflow-style:none; }
.blog-topics__scroll::-webkit-scrollbar { display:none; }
.blog-topics__pill { display:inline-flex; align-items:center; padding:0.35rem 0.85rem; border-radius:999px; border:1.5px solid #d1d9e0; background:#fff; color:#374151; font-size:0.82rem; font-weight:500; text-decoration:none; white-space:nowrap; transition:border-color 0.2s,background 0.2s,color 0.2s; flex-shrink:0; }
.blog-topics__pill:hover { border-color:var(--color-primary,#1a5fa8); color:var(--color-primary,#1a5fa8); text-decoration:none; }
.blog-topics__pill.is-active { background:var(--color-primary,#1a5fa8); border-color:var(--color-primary,#1a5fa8); color:#fff; }

/* ── Responsivo ── */
@media (max-width:900px) {
  .blog-spotlight__grid { grid-template-columns:1fr; }
  .blog-spotlight__main { min-height:280px; }
  .blog-spotlight__list { flex-direction:row; flex-wrap:wrap; }
  .blog-spotlight__item { flex:1 1 calc(50% - 0.5rem); min-width:200px; }
}
@media (max-width:600px) {
  .blog-spotlight__main { min-height:220px; }
  .blog-spotlight__main-title { font-size:1.15rem; }
  .blog-spotlight__item { flex:1 1 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE v2.9.0 — Meta reorganizado + Sidebar direita ampliada
   ═══════════════════════════════════════════════════════════════ */

/* ── Meta do post (autor sem foto + datas) ── */
.post-hero__desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.post-hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.post-hero__author-name {
  font-size: 0.9375rem;
  color: var(--color-text);
}
.post-hero__author-name strong { font-weight: 600; }
.post-hero__author-role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.post-hero__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: italic;
}
.post-hero__info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.post-hero__info-item em { font-style: italic; font-weight: 500; color: var(--color-primary); }
.post-hero__info-item--sep { color: var(--color-text-muted); font-style: normal; opacity: 0.5; }
.post-hero__info time { font-style: normal; }

/* ── Author box sem foto ── */
.author-box--no-photo {
  display: block;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 2rem;
}
.author-box--no-photo .author-box__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.author-box--no-photo .author-box__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}
.author-box--no-photo .author-box__role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.author-box--no-photo .author-box__bio {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.author-box--no-photo .author-box__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ── Sidebar: Tags / Palavras-chave ── */
.sidebar-tags {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
}
.sidebar-tags__title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.875rem;
}
.sidebar-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.sidebar-tags__pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.sidebar-tags__pill:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

/* ── Sidebar: Artigos relacionados ── */
.sidebar-recent {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
}
.sidebar-recent__title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.sidebar-recent__list { display: flex; flex-direction: column; gap: 0.875rem; }
.sidebar-recent__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.sidebar-recent__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.sidebar-recent__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-recent__body { flex: 1; min-width: 0; }
.sidebar-recent__post-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
  margin-bottom: 0.2rem;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-recent__post-title:hover { color: var(--color-primary); }
.sidebar-recent__date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ── Share: botão X (Twitter) ── */
.post-share__btn--tw {
  background: #000;
  color: #fff;
}
.post-share__btn--tw:hover { background: #333; }

/* ── Author box COM foto (v2.9.1) ── */
.author-box--with-photo {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 2rem;
}
.author-box--with-photo .author-box__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}
.author-box--with-photo .author-box__info { flex: 1; }
.author-box--with-photo .author-box__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.author-box--with-photo .author-box__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}
.author-box--with-photo .author-box__role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.author-box--with-photo .author-box__bio {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.author-box--with-photo .author-box__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .author-box--with-photo { flex-direction: column; align-items: center; text-align: center; }
}

/* ─── PÁGINA DE LISTAGEM DE ESPECIALIDADES (/especialidades/) ──────────────── */

/* Hero da listagem */
.esp-list-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #004E8A 100%);
  color: #fff;
  padding: 2rem 0 3rem;
}
.esp-list-hero .breadcrumbs {
  color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
  font-size: .875rem;
}
.esp-list-hero .breadcrumbs a { color: rgba(255,255,255,.85); }
.esp-list-hero .breadcrumbs .sep { color: rgba(255,255,255,.4); margin: 0 .35rem; }
.esp-list-hero .breadcrumbs .current { color: #fff; font-weight: 500; }

.esp-list-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.esp-list-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.esp-list-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .875rem;
}
.esp-list-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.esp-list-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
}
.esp-list-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.esp-list-hero__icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.esp-list-hero__icon-item {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
}

/* Grid de cards de especialidades */
.esp-list-grid { padding-block: 4rem; }

.esp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.esp-card-full {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
}
.esp-card-full:hover {
  box-shadow: 0 8px 32px rgba(0,119,204,.12);
  transform: translateY(-3px);
  border-color: rgba(0,119,204,.3);
}
.esp-card-full__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0,119,204,.06);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.esp-card-full__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.esp-card-full__body { flex: 1; }
.esp-card-full__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.esp-card-full__title a {
  color: inherit;
  text-decoration: none;
}
.esp-card-full__title a:hover { color: var(--color-primary); }
.esp-card-full__desc {
  font-size: .9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: .875rem;
}
.esp-card-full__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.esp-card-full__tag {
  font-size: .75rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(0,119,204,.07);
  border-radius: var(--radius-full);
  padding: .2em .65em;
}
.esp-card-full__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid var(--color-border);
}
.esp-card-full__link:hover { gap: .6rem; }

/* Seção sobre na listagem */
.esp-list-sobre { padding-block: 4rem; }
.esp-list-sobre__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
}
.esp-list-sobre__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Responsivo */
@media (max-width: 1024px) {
  .esp-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .esp-list-hero__inner { grid-template-columns: 1fr; }
  .esp-list-hero__icon-grid { display: none; }
  .esp-list-sobre__inner { grid-template-columns: 1fr; }
  .esp-list-sobre__image { order: -1; max-width: 280px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .esp-cards-grid { grid-template-columns: 1fr; }
}

/* ─── ESPECIALIDADES GRID — Página Dr. Cláudio ───────────────────────────── */
.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.especialidade-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.especialidade-card:hover {
  box-shadow: 0 4px 16px rgba(26,95,168,.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.especialidade-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #eff6ff;
  overflow: hidden;
  margin-bottom: .25rem;
}
.especialidade-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}
.especialidade-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark, #0f2a5e);
  margin: 0;
}
.especialidade-card__desc {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PÁGINA FAQ — Hero, Filtros, Lista e Sidebar
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-hero {
  background: linear-gradient(135deg, #0f2a5e 0%, #1a5fa8 100%);
  padding: 2.5rem 0 3rem;
  color: #fff;
}
.faq-hero .breadcrumbs a,
.faq-hero .breadcrumbs span { color: rgba(255,255,255,.75); }
.faq-hero .breadcrumbs .current { color: #fff; font-weight: 600; }
.faq-hero__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin: .75rem 0 .5rem;
}
.faq-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .75rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.15;
}
.faq-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.faq-hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.faq-hero__stat {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.faq-hero__stat strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.faq-hero__stat span {
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
}

/* Filtros */
.faq-filters { background: #f8fafc; border-bottom: 1px solid #e5e7eb; }
.section--sm { padding-block: 1.25rem; }
.faq-filters__list {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.faq-filter {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 100px;
  padding: .375rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.faq-filter:hover { border-color: var(--color-primary, #1a5fa8); color: var(--color-primary, #1a5fa8); }
.faq-filter.active {
  background: var(--color-primary, #1a5fa8);
  border-color: var(--color-primary, #1a5fa8);
  color: #fff;
  font-weight: 600;
}

/* Body — 2 colunas */
.faq-body__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-body__inner { grid-template-columns: 1fr; }
  .faq-list { order: 1; }
  .faq-sidebar { order: 2; }
}

/* FAQ items */
.faq-list { display: flex; flex-direction: column; gap: .625rem; }
.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(26,95,168,.08); }
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.faq-item__q-text {
  font-size: .9875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}
.faq-item__icon {
  flex-shrink: 0;
  color: var(--color-primary, #1a5fa8);
  transition: transform .25s;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__question[aria-expanded="true"] .faq-item__q-text { color: var(--color-primary, #1a5fa8); }
.faq-item__answer {
  padding: 0 1.25rem 1.125rem;
  border-top: 1px solid #f3f4f6;
}
.faq-item__answer[hidden],
[hidden].faq-item__answer { display: none !important; }
.faq-item__answer p {
  font-size: .9375rem;
  color: #4b5563;
  line-height: 1.7;
  margin: .75rem 0 0;
}

/* Sidebar */
.faq-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 90px; }
.faq-sidebar__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
}
.faq-sidebar__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 .5rem;
  font-family: 'Inter', sans-serif;
}
.faq-sidebar__card p {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 .75rem;
}
.faq-sidebar__card--blue {
  background: linear-gradient(135deg, #0f2a5e 0%, #1a5fa8 100%);
  border: none;
}
.faq-sidebar__card--blue svg { color: #fff; margin-bottom: .5rem; }
.faq-sidebar__card--blue h3 { color: #fff; }
.faq-sidebar__card--blue p { color: rgba(255,255,255,.8); }
.btn--block { width: 100%; justify-content: center; }

/* Cat list */
.faq-sidebar__cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.faq-sidebar__cat-btn {
  width: 100%;
  background: none;
  border: none;
  padding: .5rem .625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
  color: #374151;
  cursor: pointer;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  transition: background .15s;
}
.faq-sidebar__cat-btn:hover { background: #eff6ff; color: var(--color-primary, #1a5fa8); }
.faq-sidebar__cat-count {
  background: #e5e7eb;
  border-radius: 100px;
  padding: .1rem .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: #6b7280;
}


/* ─── PÁGINA DE CONVÊNIOS ────────────────────────────────────────────────────── */
.page-convenios { padding-bottom: 0; }

/* Aviso */
.convenios-notice { background: #fffbeb; border-top: 3px solid #f59e0b; padding: 1rem 0; }
.convenios-notice__box {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: #92400e;
  font-size: .9rem;
  line-height: 1.5;
}
.convenios-notice__box svg { flex-shrink: 0; margin-top: .1rem; color: #d97706; }
.convenios-notice__box a { color: #b45309; font-weight: 600; text-decoration: underline; }

/* Seção principal */
.convenios-grid-section { padding: 3rem 0 4rem; }
.convenios-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: .5rem;
}
.convenios-section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: .95rem;
  margin-bottom: 2rem;
}

/* Índice alfabético */
.convenios-alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.convenios-alpha-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--color-primary, #1a5fa8);
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  border: 1px solid #bfdbfe;
}
.convenios-alpha-nav__item:hover {
  background: var(--color-primary, #1a5fa8);
  color: #fff;
  border-color: var(--color-primary, #1a5fa8);
}

/* Grupos por letra */
.convenios-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.convenios-group {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.convenios-group:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.convenios-group__header {
  background: var(--color-primary, #1a5fa8);
  padding: .5rem 1rem;
  display: flex;
  align-items: center;
}
.convenios-group__letter {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .05em;
}
.convenios-group__list {
  list-style: none;
  margin: 0;
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.convenios-group__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: #374151;
  line-height: 1.4;
}
.convenios-check { flex-shrink: 0; }

/* Seção alternada (convênios com desconto) */
.convenios-grid-section--alt { background: var(--color-bg-alt, #f5f8fc); }
/* Header de seção com ícone */
.convenios-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md, 8px);
}
.convenios-section-header--blue { background: #eff6ff; border-left: 4px solid var(--color-primary, #0077cc); }
.convenios-section-header--blue .convenios-section-header__icon { color: var(--color-primary, #0077cc); }
.convenios-section-header--green { background: #f0fdf4; border-left: 4px solid var(--color-whatsapp, #157a39); }
.convenios-section-header--green .convenios-section-header__icon { color: var(--color-whatsapp, #157a39); }
.convenios-section-header .convenios-section-title { text-align: left; margin-bottom: .25rem; }
.convenios-section-header .convenios-section-subtitle { text-align: left; margin-bottom: 0; }
/* Variante verde para convênios com desconto */
.convenios-alpha-nav__item--green {
  background: #f0fdf4;
  color: var(--color-whatsapp, #157a39);
  border-color: #bbf7d0;
}
.convenios-alpha-nav__item--green:hover {
  background: var(--color-whatsapp, #157a39);
  color: #fff;
  border-color: var(--color-whatsapp, #157a39);
}
.convenios-group__letter--green { color: #fff; }
/* CTA de convênios */
.convenios-cta { background: #f0f7ff; padding: 3rem 0; }
.convenios-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  padding: 2rem 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid #bfdbfe;
}
.convenios-cta__text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .5rem;
}
.convenios-cta__text p { color: #6b7280; font-size: .95rem; margin: 0; }
.convenios-cta__actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 768px) {
  .convenios-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .convenios-cta__actions { justify-content: center; }
  .convenios-groups { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .convenios-groups { grid-template-columns: 1fr; }
}

/* ─── Especialidade: Áudio IA + Resumo AI ─────────────────────────────────── */
.esp-audio-wrapper {
  margin-bottom: 1.5rem;
}

.esp-audio-wrapper .post-audio-player {
  border-radius: 12px;
  overflow: hidden;
}

.esp-summary-wrapper {
  margin-bottom: 2rem;
}

.esp-summary-wrapper .ai-summary-box {
  border-radius: 12px;
  overflow: hidden;
}

/* ─── PÁGINA DE EXAMES OCULARES ─────────────────────────────────────────────── */
.page-exames-oculares { padding-bottom: 0; }

/* Layout 2 colunas */
.exames-layout { padding: 3rem 0 4rem; }
.exames-layout__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

/* Intro */
.exames-intro { margin-bottom: 2rem; }
.exames-intro__title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: .5rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid var(--color-primary, #0077cc);
  display: inline-block;
}
.exames-intro__desc { color: #6b7280; font-size: .95rem; margin: .5rem 0 0; }

/* Accordion */
.exames-accordion { display: flex; flex-direction: column; gap: .5rem; }
.exames-accordion__item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
}
.exames-accordion__item:has(.is-open) { box-shadow: 0 2px 12px rgba(0,119,204,.12); border-color: #bfdbfe; }
.exames-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
}
.exames-accordion__btn:hover { background: #f8faff; }
.exames-accordion__btn.is-open { background: #eff6ff; }
.exames-accordion__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #0077cc);
  transition: background .15s, color .15s;
}
.exames-accordion__btn.is-open .exames-accordion__icon {
  background: var(--color-primary, #0077cc);
  color: #fff;
}
.exames-accordion__name {
  flex: 1;
  font-size: .95rem;
  font-weight: 600;
  color: #1a2e4a;
  line-height: 1.3;
}
.exames-accordion__chevron {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform .25s;
}
.exames-accordion__btn.is-open .exames-accordion__chevron { transform: rotate(180deg); }

/* Painel */
.exames-accordion__panel { display: none; }
.exames-accordion__panel.is-open { display: block; }
.exames-accordion__body {
  padding: 0 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid #e5e7eb;
}
.exames-accordion__desc {
  font-size: .9rem;
  color: #374151;
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
}
.exames-accordion__meta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
  background: #f8faff;
  border-radius: var(--radius-sm, 6px);
  padding: 1rem;
}
.exames-meta-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .85rem;
}
.exames-meta-item svg { flex-shrink: 0; margin-top: .15rem; color: var(--color-primary, #0077cc); }
.exames-meta-item strong { display: block; font-weight: 700; color: #1a2e4a; margin-bottom: .1rem; }
.exames-meta-item span { color: #4b5563; line-height: 1.5; }
.exames-accordion__cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary, #0077cc);
  text-decoration: none;
  transition: gap .15s;
}
.exames-accordion__cta:hover { gap: .625rem; }

/* Sidebar */
.exames-sidebar-card {
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  margin-bottom: 1.5rem;
}
.exames-sidebar-card__header {
  background: var(--color-primary, #0077cc);
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.exames-sidebar-card__header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.exames-sidebar-card__body {
  background: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.exames-sidebar-card__body p { font-size: .9rem; color: #4b5563; margin: 0 0 .25rem; }
.btn--block { width: 100%; justify-content: center; }

.exames-sidebar-tip,
.exames-sidebar-esp {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md, 8px);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.exames-sidebar-tip h3,
.exames-sidebar-esp h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #1a2e4a;
  margin-bottom: .875rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.exames-sidebar-tip h3 svg { color: #f59e0b; }
.exames-sidebar-tip ul,
.exames-sidebar-esp ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.exames-sidebar-tip li {
  font-size: .85rem;
  color: #374151;
  padding-left: 1.25rem;
  position: relative;
}
.exames-sidebar-tip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary, #0077cc);
  font-weight: 700;
}
.exames-sidebar-esp li { font-size: .9rem; }
.exames-sidebar-esp a {
  color: var(--color-primary, #0077cc);
  text-decoration: none;
  font-weight: 500;
}
.exames-sidebar-esp a:hover { text-decoration: underline; }

/* Responsivo */
@media (max-width: 900px) {
  .exames-layout__inner {
    grid-template-columns: 1fr;
  }
  .exames-layout__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .exames-sidebar-card { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .exames-layout__sidebar { grid-template-columns: 1fr; }
  .exames-accordion__btn { padding: .875rem 1rem; }
  .exames-accordion__body { padding: 0 1rem 1rem; }
  .exames-accordion__icon { width: 34px; height: 34px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PÁGINA DE TECNOLOGIAS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero — variante tecnologias (imagem mais larga) */
.esp-list-hero--tecnologias .esp-list-hero__inner {
  align-items: center;
}
.esp-list-hero__hero-img--wide {
  max-width: 520px;
}
.esp-list-hero__hero-img--wide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Intro */
.tec-intro { padding-bottom: 0; }
.tec-intro .section__header { max-width: 760px; margin: 0 auto; text-align: center; }

/* Section cinza */
.section--gray { background: var(--color-bg-alt, #f5f7fa); }

/* ── Card de equipamento ─────────────────────────────────────────────────── */
.tec-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border, #e5e9f0);
}
.tec-card:last-child { border-bottom: none; }
.tec-card--reverse {
  grid-template-columns: 1fr 420px;
}
.tec-card--reverse .tec-card__figure { order: 2; }
.tec-card--reverse .tec-card__body   { order: 1; }
/* Figura do equipamento */
.tec-card__figure {
  position: relative;
  background: #f7fafd;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tec-card__figure picture,
.tec-card__figure img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.tec-card__img-credit {
  font-size: .58rem;
  color: rgba(0,0,0,.35);
  margin-top: .75rem;
  text-align: right;
  display: block;
  width: 100%;
}
.tec-card--reverse .tec-card__img-credit { text-align: left; }
/* Corpo do card */
.tec-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-primary, #1565c0);
  border-radius: var(--radius-full);
  padding: .3rem .85rem;
  margin-bottom: .85rem;
}
.tec-card__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--color-dark, #003366);
  margin-bottom: .15rem;
  line-height: 1.15;
}
.tec-card__fabricante {
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-primary, #1565c0);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.tec-card__intro {
  font-size: .97rem;
  line-height: 1.75;
  color: var(--color-text, #1A1A2E);
  margin-bottom: .85rem;
  font-weight: 500;
}
.tec-card__desc {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--color-text-muted, #5A6A7A);
  margin-bottom: 1.5rem;
}
/* Divisor antes das aplicações */
.tec-card__aplicacoes {
  border-top: 1px solid var(--color-border, #e5e9f0);
  padding-top: 1.25rem;
}
.tec-card__aplicacoes-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--color-text-muted, #5A6A7A);
  margin-bottom: .75rem;
}
.tec-card__aplicacoes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .75rem;
}
.tec-card__aplicacoes-list li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .88rem;
  color: var(--color-text, #1A1A2E);
  line-height: 1.4;
}
.tec-card__aplicacoes-list li svg {
  color: var(--color-primary, #0077CC);
  flex-shrink: 0;
  margin-top: 2px;
}
/* CTA Final */
.tec-cta { background: var(--color-primary, #0077CC); color: #fff; }
.tec-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.tec-cta__title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.tec-cta__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
}
/* ── Responsivo tecnologias ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tec-card,
  .tec-card--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .tec-card--reverse .tec-card__figure { order: 0; }
  .tec-card--reverse .tec-card__body   { order: 0; }
  .tec-card__figure { padding: 1.5rem; }
  .tec-card__aplicacoes-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tec-cta__inner { flex-direction: column; align-items: flex-start; }
  .tec-card__figure { padding: 1.25rem; }
}

/* ── Badge de Tempo de Leitura ─────────────────────────────────────────────── */
.reading-time-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--color-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1;
  padding: .35rem .75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: .01em;
}
.reading-time-badge svg { flex-shrink: 0; opacity: .9; }
.serv-hero .reading-time-badge,
.autor-hero .reading-time-badge,
.esp-list-hero .reading-time-badge {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.reading-time-wrapper { margin-bottom: .75rem; }

/* ─── FAQ MOBILE FIX ─────────────────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  .faq-preview__inner,
  div.faq-preview__inner {
    display: block !important;
    grid-template-columns: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .faq-preview__header,
  .faq-preview__list,
  .faq-preview__cta {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .faq-item__question {
    width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}
.serv-gutenberg-content{margin-top:32px}.serv-gutenberg-content h2{font-size:20px;font-weight:700;color:#003b73;margin:48px 0 24px 0;display:flex;align-items:center;gap:12px}.serv-gutenberg-content h2:first-child{margin-top:0}.serv-gutenberg-content p{font-size:16px;line-height:1.6;color:#475569;margin-bottom:16px}.serv-gutenberg-content .exm-box-white{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:32px;margin-bottom:32px;box-shadow:0 2px 4px rgb(0 0 0 / .02)}.serv-gutenberg-content .exm-box-white h2{margin-top:0}.serv-gutenberg-content .exm-box-white p:last-child{margin-bottom:0}.serv-gutenberg-content .exm-box-white ul{list-style:none;padding:0;margin:24px 0 0 0;display:grid;grid-template-columns:1fr 1fr;gap:12px}.serv-gutenberg-content .exm-box-white ul li{background:#fff;border:1px solid #e2e8f0;border-radius:8px;padding:16px 16px 16px 44px;position:relative;font-size:15px;color:#334155;line-height:1.5}.serv-gutenberg-content .exm-box-white ul li::before{content:"";position:absolute;left:14px;top:18px;width:18px;height:18px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230076c8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;flex-shrink:0}@media (max-width:600px){.serv-gutenberg-content .exm-box-white ul{grid-template-columns:1fr}}.serv-gutenberg-content .exm-box-gray{background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:32px;margin-bottom:32px}.serv-gutenberg-content .exm-box-gray h2{margin-top:0}.serv-gutenberg-content .exm-box-gray ul{list-style:none;padding:0;margin:24px 0 0 0;display:flex;flex-direction:column;gap:12px}.serv-gutenberg-content .exm-box-gray ul li{font-size:16px;color:#334155;line-height:1.6}.serv-gutenberg-content .exm-box-gray ul li strong{color:#0f172a;font-weight:600}.serv-gutenberg-content .exm-box-steps{background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:32px;margin-bottom:32px}.serv-gutenberg-content .exm-box-steps h2{margin-top:0}.serv-gutenberg-content .exm-box-steps ol{list-style:none;padding:0;margin:24px 0 0 0;counter-reset:exame-passos;display:flex;flex-direction:column;gap:24px}.serv-gutenberg-content .exm-box-steps ol li{position:relative;padding-left:56px}.serv-gutenberg-content .exm-box-steps ol li::before{counter-increment:exame-passos;content:counter(exame-passos);position:absolute;left:0;top:0;width:40px;height:40px;background:#0076c8;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px}.serv-gutenberg-content .exm-box-steps ol li strong{display:block;font-size:18px;color:#003b73;margin-bottom:8px}.serv-gutenberg-content .exm-box-steps ol li p{margin:0;font-size:15px;color:#475569}.serv-gutenberg-content .exm-box-preparo{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:32px;margin-bottom:32px;box-shadow:0 2px 4px rgb(0 0 0 / .02)}.serv-gutenberg-content .exm-box-preparo h2{margin-top:0}.serv-gutenberg-content .exm-box-preparo blockquote,.serv-gutenberg-content .exm-box-preparo .wp-block-quote{background:#f0fdf4;border:1px solid #bbf7d0;border-radius:8px;padding:24px;margin:0 0 16px 0;display:flex;gap:16px;align-items:flex-start}.serv-gutenberg-content .exm-box-preparo blockquote::before{content:"";display:block;width:24px;height:24px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316a34a'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;flex-shrink:0}.serv-gutenberg-content .exm-box-preparo blockquote p{margin:0;color:#166534;font-size:16px;line-height:1.6}.serv-gutenberg-content .exm-box-preparo blockquote p strong{font-weight:700}h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}.wp-block-quote{box-sizing:border-box;overflow-wrap:break-word}.wp-block-quote.is-large:where(:not(.is-style-plain)),.wp-block-quote.is-style-large:where(:not(.is-style-plain)){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:where(:not(.is-style-plain)) p,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer{font-size:1.125em;text-align:right}.wp-block-quote>cite{display:block}