/* ============================================================
   Clínica Nodari — main.css
   Versão: 1.0.0
   Organização:
   1. Reset & Variáveis
   2. Base
   3. Utilitários
   4. Topbar
   5. Navegação
   6. Hero
   7. Nossa História
   8. Especialidades
   9. Psicólogos
   10. CTA Banner
   11. Blog
   12. Post Single
   13. Psicologo Single
   14. Footer
   15. WhatsApp Float
   16. Animações
   17. Responsivo
============================================================ */

/* ============================================================
   CENTURY GOTHIC — Self-hosted (Manual de Identidade Visual)
============================================================ */
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   1. RESET & VARIÁVEIS
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Paleta oficial — Manual de Identidade Visual Clínica Nodari (TAI Branding 2025) ── */
  --color-teal:        #00a6af;   /* Teal principal */
  --color-teal-deep:   #0e6e73;   /* Teal escuro */
  --color-teal-light:  #4dc8cf;   /* Teal claro */
  --color-teal-bg:     #e3f5f6;   /* Fundo teal */
  --color-yellow:      #fcc81f;   /* Amarelo principal */
  --color-yellow-dark: #d4a800;   /* Amarelo escuro */
  --color-brown:       #854920;   /* Marrom (tronco da logo) */
  --color-dark:        #1a2b3c;
  --color-text:        #2D3748;
  --color-text-muted:  #718096;
  --color-bg:          #FFFFFF;
  --color-bg-soft:     #f4fbfb;   /* Fundo suave teal */
  --color-border:      #d4eef0;   /* Borda teal suave */
  --color-white:       #FFFFFF;

  /* ── Tipografia — Century Gothic (self-hosted, Manual de Identidade Visual) ── */
  --font-display:      'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
  --font-body:         'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;

  --spacing-md:        40px;
  --spacing-lg:        80px;
  --spacing-xl:        120px;
  --transition-fast:   .25s ease;
  --transition-slow:   .6s ease;
  --container-max:     1200px;
  --nav-height:        80px;
  --radius-sm:         8px;
  --radius-md:         16px;
  --radius-lg:         24px;
  --shadow-sm:         0 2px 8px rgba(0,166,175,0.08);
  --shadow-md:         0 8px 32px rgba(0,166,175,0.12);
  --shadow-lg:         0 24px 64px rgba(0,166,175,0.15);
}

/* ============================================================
   2. BASE
============================================================ */
html, body { margin: 0 !important; padding: 0 !important; width: 100%; }
html { scroll-behavior: smooth; }

/* Remove margin-top que o WordPress injeta para a admin bar */
html body.admin-bar { margin-top: 0 !important; }
html body.admin-bar #wpadminbar { position: fixed; }

/* Garante que body e main na página de blog não adicionem espaços extras */
body.blog .archive-blog,
body.archive .archive-blog,
body.home .archive-blog {
  padding-top: 48px;
  padding-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ============================================================
   3. UTILITÁRIOS
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--color-teal); }

.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn svg { width: 15px; height: 15px; flex-shrink: 0; display: block; }

.btn--yellow { background: var(--color-yellow); color: var(--color-dark); }
/* Botão CTA no perfil do psicólogo */
.psi-single__cta .btn--yellow { margin-top: 24px; }
.btn--yellow:hover { background: var(--color-yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.35); }

.btn--teal { background: var(--color-teal); color: var(--color-white); }
.btn--teal:hover { background: var(--color-teal-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,122,124,0.3); }

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

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal.visible    { opacity: 1; transform: translateY(0); }
.reveal--delay-1   { transition-delay: .1s; }
.reveal--delay-2   { transition-delay: .2s; }
.reveal--delay-3   { transition-delay: .3s; }
.reveal--delay-4   { transition-delay: .4s; }

/* ============================================================
   4. TOPBAR
============================================================ */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--spacing-md);
  background: var(--color-teal);
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__item { display: flex; align-items: center; gap: 6px; }
.topbar__item a { color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.topbar__item a:hover { color: var(--color-yellow); }
.topbar__social { display: flex; align-items: center; gap: 12px; }
.topbar__social a { color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.topbar__social a:hover { color: var(--color-yellow); }

/* ============================================================
   5. NAVEGAÇÃO
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--spacing-md);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-fast);
}

.nav--scrolled { box-shadow: var(--shadow-md); }

.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.nav__logo-img--full { width: auto; height: 52px; max-width: 200px; }
.nav__logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--color-teal); line-height: 1.1; }
.nav__logo-sub  { font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 2px; }
.nav__logo-crp  { font-size: 9px; color: var(--color-teal); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-teal);
  border-radius: 1px;
  transition: width var(--transition-fast);
}
.nav__links a:hover { color: var(--color-teal); }
.nav__links a:hover::after { width: 100%; }
.nav__links .btn::after { display: none; }
.nav__links .btn:hover  { color: var(--color-dark); }
.nav__links .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; line-height: 1; padding: 12px 22px; }

/* Hamburguer */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.nav__hamburger-line {
  display: block;
  width: 100%; height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  transform-origin: center;
}
.nav__hamburger--open .nav__hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open .nav__hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger--open .nav__hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. HERO
============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px var(--spacing-md) 48px 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--color-teal-bg);
  border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--color-teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700; line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .7s .35s forwards;
}
.hero__title em { font-style: italic; color: var(--color-teal); }

.hero__desc {
  font-size: 15px; line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 480px; margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp .7s .5s forwards;
}

.hero__mode {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--color-teal);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s .6s forwards;
}

.hero__actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .7s forwards;
}

.hero__visual { position: relative; background: var(--color-teal-bg); overflow: hidden; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,122,124,0.15) 0%, transparent 60%);
}

.hero__card {
  position: absolute; bottom: 40px; left: -24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}
.hero__card-icon {
  width: 44px; height: 44px;
  background: var(--color-teal-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-teal);
}
.hero__card-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--color-dark); line-height: 1; }
.hero__card-label { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }

/* ============================================================
   7. NOSSA HISTÓRIA
============================================================ */
.historia { padding: var(--spacing-xl) 0; background: var(--color-teal); color: var(--color-white); }
.historia .section-label  { color: rgba(255,255,255,0.6); }
.historia .section-title  { color: var(--color-white); }
.historia .body-text      { color: rgba(255,255,255,0.8); margin-bottom: 16px; }

.historia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-bottom: 80px;
}
.historia__grid:last-child  { margin-bottom: 0; }
.historia__grid--reverse    { direction: rtl; }
.historia__grid--reverse > * { direction: ltr; }

.historia__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f0f0f0;
  aspect-ratio: 3 / 2;
}
.historia__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .6s ease;
  image-rendering: -webkit-optimize-contrast;
}
.historia__img:hover img { transform: scale(1.04); }

/* Imagem da sala de atendimento — foco no centro */
.historia__img--predio img {
  object-position: center center;
}

.historia__list { margin-top: 20px; }
.historia__list-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.historia__list-dot {
  width: 20px; height: 20px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  color: var(--color-dark);
}

/* ============================================================
   8. ESPECIALIDADES
============================================================ */
.especialidades { padding: var(--spacing-xl) 0; background: var(--color-bg-soft); }
.especialidades__header { text-align: center; margin-bottom: 60px; }
.especialidades__header .body-text { max-width: 560px; margin: 0 auto; }
.especialidades__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.espec-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}
.espec-card .espec-card__img-wrap { overflow: hidden; flex-shrink: 0; }
.espec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.espec-card__img  {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
  image-rendering: -webkit-optimize-contrast;
}
.espec-card:hover .espec-card__img { transform: scale(1.04); }
.espec-card__body { padding: 28px 28px 32px; }
.espec-card__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--color-teal); margin-bottom: 12px; }
.espec-card__text  { font-size: 14px; line-height: 1.75; color: var(--color-text-muted); margin-bottom: 20px; }
.espec-card__link  {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--color-teal);
  transition: gap var(--transition-fast);
}
.espec-card__link:hover { gap: 10px; }

/* ============================================================
   9. PSICÓLOGOS
============================================================ */
.psicologos { padding: var(--spacing-xl) 0; background: var(--color-bg-soft); }
.psicologos__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  margin-top: 0;
}
.psicologos__header .section-label { display: block; }
.psicologos__header .section-title { margin-bottom: 0; }
.psicologos__header-btn { flex-shrink: 0; }
.psicologos__empty { text-align: center; padding: 60px 0; }
.psicologos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.psi-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.psi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.psi-card__img-wrap { overflow: hidden; height: 280px; }
.psi-card__img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.psi-card:hover .psi-card__img { transform: scale(1.04); }
.psi-card__body { padding: 24px; }
.psi-card__name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--color-dark); margin-bottom: 6px; }
.psi-card__especialidade { font-size: 13px; font-weight: 600; color: var(--color-teal); margin-bottom: 4px; }
.psi-card__crp { font-size: 12px; color: var(--color-text-muted); margin-bottom: 4px; }
.psi-card__formacao { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.psi-card__atende {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-teal-bg);
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-teal);
}

/* ── Psicólogos archive grid ── */
.psi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.psi-teal-card {
  background: linear-gradient(160deg, var(--color-teal) 0%, var(--color-teal-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 8px 32px rgba(0,166,175,0.25);
}

.psi-teal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,166,175,0.35);
}

.psi-teal-card__orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  animation: orbFloat 6s ease-in-out infinite;
}

.psi-teal-card__orb--1 {
  width: 160px; height: 160px;
  top: -50px; right: -50px;
  animation-delay: 0s;
}

.psi-teal-card__orb--2 {
  width: 100px; height: 100px;
  bottom: -30px; left: -30px;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(6px, -8px) scale(1.05); }
}

.psi-teal-card__photo-wrap {
  position: relative;
  width: 100px; height: 100px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.psi-teal-card__photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(255,255,255,0.3);
  display: block;
  transition: transform .4s ease, border-color .4s ease;
}

.psi-teal-card:hover .psi-teal-card__photo {
  transform: scale(1.06);
  border-color: rgba(255,255,255,0.7);
}

.psi-teal-card__photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border: 3px solid rgba(255,255,255,0.2);
}

.psi-teal-card__badge {
  position: absolute;
  bottom: 4px; right: 4px;
  width: 22px; height: 22px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  border: 2px solid #fff;
}

.psi-teal-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

.psi-teal-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.psi-teal-card__meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.5;
}

.psi-teal-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  width: 100%;
  text-align: left;
}

.psi-teal-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.psi-teal-card__list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.psi-teal-card__check {
  color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.psi-teal-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 28px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.psi-teal-card__btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Psicologos archive */
.psicologos-archive { padding: var(--spacing-lg) 0; margin: 0; }

/* Psicologo single */
.single-psicologo { padding: var(--spacing-xl) 0; }
.psicologo-perfil__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.psicologo-perfil__foto img { border-radius: var(--radius-lg); width: 100%; }
.psicologo-perfil__especialidade { font-size: 16px; font-weight: 600; color: var(--color-teal); margin-bottom: 8px; }
.psicologo-perfil__crp { font-size: 13px; color: var(--color-text-muted); margin-bottom: 8px; }
.psicologo-perfil__formacao { font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; }
.psicologo-perfil__bio { margin-top: 24px; }
.psicologo-perfil__bio p { font-size: 15px; line-height: 1.8; color: var(--color-text-muted); margin-bottom: 16px; }

/* ============================================================
   10. CTA BANNER
============================================================ */
.cta-banner {
  padding: 80px var(--spacing-md);
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,165,168,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700; color: var(--color-white);
  margin-bottom: 32px; position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: normal;
}
.cta-banner__title em { font-style: italic; color: var(--color-yellow); }
.cta-banner__nowrap { white-space: nowrap; }

/* ============================================================
   10b. MISSÃO, VISÃO E VALORES
============================================================ */
.mvv {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-soft);
}
.mvv__header {
  text-align: center;
  margin-bottom: 56px;
}
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mvv-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.mvv-card__icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(0,178,188,0.1), rgba(0,178,188,0.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  padding: 12px;
}
.mvv-card__icon img {
  width: 48px; height: 48px;
  object-fit: contain;
}
.mvv-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 16px;
}
.mvv-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ============================================================
   10c. GALERIA DE CONSULTÓRIOS
============================================================ */
.galeria {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg);
}
.galeria__header {
  text-align: center;
  margin-bottom: 48px;
}
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.galeria__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.galeria__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.galeria__item:hover img {
  transform: scale(1.06);
}
.galeria__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 178, 188, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}
.galeria__item:hover .galeria__overlay {
  opacity: 1;
}

/* ============================================================
   10d. PAGE HERO (páginas internas)
============================================================ */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--color-teal) 0%, #007a82 100%);
  color: var(--color-white);
  text-align: center;
}
.page-hero__content { max-width: 700px; margin: 0 auto; }
.page-hero--clinica .section-label { color: rgba(255,255,255,0.75); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero__title em { font-style: italic; color: var(--color-yellow); }
.page-hero__desc { font-size: 16px; color: rgba(255,255,255,0.85); }

/* ============================================================
   10e. LOCALIZAÇÃO
============================================================ */
.localizacao {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-soft);
}
.localizacao__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.localizacao__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.localizacao__icon {
  width: 44px; height: 44px;
  background: var(--color-teal-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-teal);
}
.localizacao__item strong { display: block; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.localizacao__item p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; margin: 0; }
.localizacao__mapa iframe { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Logo destaque na seção história */
.historia__logo-destaque {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.historia__logo-destaque img {
  width: 120px; height: auto;
  object-fit: contain;
}

/* ============================================================
   11. BLOG (listagem)
============================================================ */
.blog { padding: var(--spacing-xl) 0; background: var(--color-bg); }
.blog__header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.archive-blog { padding: 48px 0 60px; margin: 0; }
.archive-blog__header { margin-bottom: 48px; margin-top: 0; }
.archive-blog__pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; }
.archive-blog__pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 14px; font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}
.archive-blog__pagination .page-numbers.current,
.archive-blog__pagination .page-numbers:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__img  { width: 100%; height: 180px; object-fit: cover; }
.blog-card__tag  {
  display: inline-block;
  margin: 20px 20px 0;
  padding: 4px 12px;
  background: var(--color-teal-bg);
  border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-teal);
}
.blog-card__body    { padding: 14px 20px 24px; }
.blog-card__title   { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--color-dark); margin-bottom: 10px; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__excerpt { font-size: 13.5px; line-height: 1.7; color: var(--color-text-muted); margin-bottom: 16px; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--color-teal); text-transform: uppercase;
  transition: gap var(--transition-fast);
}
.blog-card__link:hover { gap: 10px; }
.blog__more { text-align: center; margin-top: 48px; }

/* ============================================================
   12. POST SINGLE
============================================================ */
.single-post { padding: var(--spacing-xl) 0; }
.post-article__header { margin-bottom: 32px; }
.post-article__title  { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--color-dark); margin: 16px 0 12px; line-height: 1.2; }
.post-article__meta   { font-size: 13px; color: var(--color-text-muted); display: flex; gap: 8px; align-items: center; }
.post-article__thumb  { margin-bottom: 40px; border-radius: var(--radius-lg); overflow: hidden; }
.post-article__thumb img { width: 100%; max-height: 480px; object-fit: cover; }
.post-article__content { max-width: 760px; }
.post-article__content p  { font-size: 16px; line-height: 1.85; color: var(--color-text); margin-bottom: 20px; }
.post-article__content h2 { font-family: var(--font-display); font-size: 28px; color: var(--color-dark); margin: 40px 0 16px; }
.post-article__content h3 { font-family: var(--font-display); font-size: 22px; color: var(--color-dark); margin: 32px 0 12px; }
.post-article__content ul, .post-article__content ol { padding-left: 20px; margin-bottom: 20px; }
.post-article__content li { font-size: 15px; line-height: 1.75; color: var(--color-text); margin-bottom: 8px; }
.post-article__content strong { font-weight: 700; color: var(--color-dark); }
.post-article__content a { color: var(--color-teal); text-decoration: underline; }

/* ============================================================
   BREADCRUMB — Reset total de numeração
============================================================ */
/* Reset BEM (fallback manual) */
.breadcrumb__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; gap: 6px; flex-wrap: wrap; font-size: 0.85rem; color: var(--color-text-muted); }
.breadcrumb__item { display: flex; align-items: center; }
.breadcrumb__item--current { color: var(--color-text); max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.breadcrumb__link { color: var(--color-teal); text-decoration: none; transition: color var(--transition-fast); }
.breadcrumb__link:hover { color: var(--color-teal-deep); }
.breadcrumb__separator { color: var(--color-border); margin: 0 2px; }

/* Breadcrumb Yoast — reset agressivo de numeração */
nav.breadcrumb { margin: 0 0 28px; font-size: 0.83rem; color: var(--color-text-muted); }
nav.breadcrumb ol { list-style: none !important; list-style-type: none !important; counter-reset: list-item 0 !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-wrap: wrap; align-items: center; }
nav.breadcrumb ol li { list-style: none !important; list-style-type: none !important; counter-increment: none !important; display: flex !important; align-items: center; }
nav.breadcrumb ol li::marker { content: none !important; display: none !important; font-size: 0 !important; }
nav.breadcrumb ol li::before { content: none !important; display: none !important; }
nav.breadcrumb ol li:not(:first-child)::before { content: "/" !important; display: inline !important; color: var(--color-border); margin: 0 7px; font-size: 0.78rem; }
nav.breadcrumb ol li a { color: var(--color-teal); text-decoration: none; transition: color var(--transition-fast); }
nav.breadcrumb ol li a:hover { color: var(--color-teal-deep); }
nav.breadcrumb ol li.breadcrumb_last { color: var(--color-dark); font-weight: 600; max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* CTA do post */
.post-article__cta {
  background: var(--color-teal-bg);
  border-left: 4px solid var(--color-teal);
  padding: 20px 24px;
  margin: 40px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-article__cta-title { font-weight: 700; color: var(--color-teal); margin: 0 0 8px; }
.post-article__cta-desc  { color: var(--color-text); font-size: 0.95rem; margin: 0 0 16px; }

.post-article__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.post-article__nav a { font-size: 14px; font-weight: 600; color: var(--color-teal); transition: color var(--transition-fast); }
.post-article__nav a:hover { color: var(--color-teal-deep); }

/* ============================================================
   12b. PAGE CONTENT (Páginas estáticas)
============================================================ */
.page-content { padding: 48px 0 80px; }
.page-article__header { margin-bottom: 32px; }
.page-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-article__updated { color: var(--color-text-muted); font-size: 0.85rem; margin-top: 8px; }
.page-article__content { max-width: 800px; line-height: 1.8; }
.page-article__content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-teal);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}
.page-article__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 28px 0 10px;
}
.page-article__content p { margin-bottom: 16px; color: var(--color-text); font-size: 0.97rem; }
.page-article__content ul,
.page-article__content ol { padding-left: 24px; margin-bottom: 16px; }
.page-article__content li { margin-bottom: 8px; color: var(--color-text); font-size: 0.97rem; }
.page-article__content a { color: var(--color-teal); text-decoration: underline; }
.page-article__content strong { color: var(--color-dark); font-weight: 700; }
.page-article__content blockquote {
  border-left: 4px solid var(--color-teal);
  padding: 12px 20px;
  background: var(--color-teal-bg);
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Tags do post */
.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 40px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.post-tags__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.post-tags__item {
  display: inline-block;
  padding: 5px 14px;
  background: var(--color-teal-bg);
  border: 1px solid rgba(13,115,119,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.post-tags__item:hover {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

/* ============================================================
   12c. POSTS RELACIONADOS
============================================================ */
.related-posts {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}
.related-posts__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 32px;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.related-posts__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.related-posts__card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.related-posts__thumb-link { display: block; overflow: hidden; }
.related-posts__thumb { aspect-ratio: 16/9; overflow: hidden; }
.related-posts__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.related-posts__card:hover .related-posts__thumb img { transform: scale(1.04); }
.related-posts__body { padding: 20px; }
.related-posts__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 8px 0 10px;
  line-height: 1.4;
}
.related-posts__card-title a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
.related-posts__card-title a:hover { color: var(--color-teal); }
.related-posts__excerpt { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 16px; }
.related-posts__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-teal);
  text-transform: uppercase;
  text-decoration: none;
  transition: gap var(--transition-fast);
}
.related-posts__link:hover { gap: 10px; }

/* ============================================================
   12d. COMENTÁRIOS
============================================================ */
.post-comments {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   COMENTÁRIOS — Lista de comentários existentes
============================================================ */
.comment-list,
.comment-list ol,
.comment-list ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 40px !important;
  counter-reset: none !important;
}
.comment-list .comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.comment-list .comment:last-child { border-bottom: none; }

.comment-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
  row-gap: 4px;
}

.comment-meta {
  display: contents;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.comment-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--color-teal-bg);
  display: block;
}

.comment-author .fn {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.comment-author a { color: var(--color-dark); text-decoration: none; }

.comment-metadata {
  flex: 1;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.comment-metadata a { color: var(--color-text-muted); text-decoration: none; }

.comment-content {
  width: 100%;
  padding-left: 62px;
  margin-top: 4px;
}

.comment-content p { font-size: 0.95rem; color: var(--color-text); line-height: 1.7; margin-bottom: 8px; }

.reply {
  width: 100%;
  padding-left: 62px;
}

.reply a {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.reply a:hover { color: var(--color-teal-deep); }

/* Aguardando moderação */
.comment-awaiting-moderation {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-style: italic;
  background: var(--color-teal-bg);
  padding: 2px 10px;
  border-radius: 100px;
}

/* Título da seção de comentários */
#comments > h2,
#comments > h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-teal-bg);
}

/* ============================================================
   FORMULÁRIO DE COMENTÁRIO — Design conforme referência visual
============================================================ */
#respond {
  margin-top: 56px;
  padding: 40px 44px;
  background: #ffffff;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

/* Ocultar nota "O seu endereço de e-mail não será publicado" */
#respond .comment-notes { display: none !important; }

/* Título */
#respond h3#reply-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2e44;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
#respond h3#reply-title small { display: none; }

/* Wrapper do formulário — grid 2 colunas (Nome | E-mail) */
#commentform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comment-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Ocultar campo Site e cookies */
.comment-form-url,
.comment-form-cookies-consent { display: none !important; }

/* Labels */
.comment-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2e44;
  letter-spacing: 0;
}
.comment-form label .required { color: var(--color-teal); margin-left: 2px; }

/* Inputs e textarea — fundo cinza claro, sem borda */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: none !important;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1a2e44;
  background: #f0f2f5 !important;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-body);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  outline: none;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
  background: #e8ecf0 !important;
  box-shadow: 0 0 0 2px rgba(13,115,119,0.2);
}
.comment-form textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

.comment-form-comment,
.form-submit {
  grid-column: 1 / -1;
}

/* Botão COMENTAR */
.comment-form .form-submit {
  margin-top: 4px;
  margin-bottom: 0;
}
.comment-form .form-submit input[type="submit"],
#submit {
  display: inline-block !important;
  padding: 16px 40px !important;
  background: #0d9488 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  font-family: var(--font-body) !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 4px 20px rgba(13,148,136,0.3) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  line-height: 1 !important;
}
.comment-form .form-submit input[type="submit"]:hover,
#submit:hover {
  background: #0a7a70 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(13,148,136,0.4) !important;
}

/* Link cancelar */
#cancel-comment-reply-link {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-left: 12px;
}
#cancel-comment-reply-link:hover { color: var(--color-teal); }

/* ============================================================
   13. FOOTER
============================================================ */
.footer { background: var(--color-teal); color: var(--color-white); }
.footer__top { padding: var(--spacing-lg) 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }

.footer__brand-logo { display: flex; align-items: flex-start; margin-bottom: 20px; }
.footer__brand-logo a { display: inline-block; }
.footer__brand-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.95;
  display: block;
}
.footer__brand-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer__brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--color-white); }
.footer__brand-sub  { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }
.footer__brand-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.footer__brand-crp  { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--color-yellow); margin-bottom: 20px; }
.footer__email      { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }

.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}
.footer__social-link:hover { background: var(--color-yellow); border-color: var(--color-yellow); color: var(--color-dark); }

.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-yellow); margin-bottom: 24px; }
.footer__info-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.footer__info-item svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer__horario-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--color-yellow);
  margin-top: 8px;
}
.footer__convenio-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
}
.footer__convenio-btn:hover { background: var(--color-yellow); border-color: var(--color-yellow); color: var(--color-dark); }

.footer__phone-link { color: rgba(255,255,255,0.8); transition: color var(--transition-fast); }
.footer__phone-link:hover { color: var(--color-yellow); }

.footer__bottom {
  padding: 20px var(--spacing-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 8px;
}
.footer__privacy-link { color: rgba(255,255,255,0.6); text-decoration: underline; transition: color var(--transition-fast); }
.footer__privacy-link:hover { color: var(--color-yellow); }

/* ============================================================
   14. WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition-fast);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   15. ANIMAÇÕES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   16. RESPONSIVO
============================================================ */
@media (max-width: 960px) {
  /* Topbar mobile: mantém linha horizontal compacta, oculta endereço */
  .topbar { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: nowrap; padding: 8px 16px; gap: 8px; }
  .topbar__left { flex-direction: row; flex-wrap: nowrap; gap: 12px; overflow: hidden; }
  .topbar__left > .topbar__item:first-child { display: none; } /* Oculta endereço no mobile */
  .topbar__item span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
  .topbar__social { flex-shrink: 0; gap: 10px; }
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }

  /* Hamburguer */
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-height); left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    z-index: 99;
  }
  .nav__links--open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__links a { display: block; padding: 14px 24px; border-bottom: 1px solid var(--color-border); font-size: 14px; }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin: 12px 24px 4px; justify-content: center; border-radius: var(--radius-sm); }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 60px 24px; }
  .hero__visual { height: 340px; }
  .hero__card { display: none; }

  .historia__grid,
  .historia__grid--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }

  .especialidades__grid { grid-template-columns: 1fr; }
  .psicologos__grid     { grid-template-columns: 1fr; }
  .psi-grid             { grid-template-columns: 1fr; }
  .psicologos__header   { flex-direction: column; align-items: flex-start; }
  .nav__logo-img--full  { height: 40px; max-width: 160px; }
  .mvv__grid            { grid-template-columns: 1fr; }
  .galeria__grid        { grid-template-columns: repeat(2, 1fr); }
  .localizacao__grid    { grid-template-columns: 1fr; }
  .blog__header         { grid-template-columns: 1fr; }
  .blog__grid           { grid-template-columns: 1fr; }

  .psicologo-perfil__grid { grid-template-columns: 1fr; gap: 40px; }

  .footer__grid   { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Blog archive — mobile */
  .archive-blog { padding: 32px 0 40px; }
  .archive-blog__header { margin-bottom: 28px; }

  /* Posts relacionados — mobile */
  .related-posts__grid { grid-template-columns: 1fr; gap: 20px; }

  /* Comentários — mobile */
  .comment-content,
  .reply { padding-left: 0; }
  .comment-author .avatar { width: 40px; height: 40px; }

  /* Tags — mobile */
  .post-tags { flex-wrap: wrap; gap: 8px; }

  /* Formulário de comentário — mobile */
  #respond { padding: 28px 20px; }
  #commentform { grid-template-columns: 1fr; }
  .comment-form-author,
  .comment-form-email { grid-column: auto; }
}

/* ============================================================
   18. LIGHTBOX — Galeria de Consultórios
============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.lb--open {
  opacity: 1;
  pointer-events: all;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lb-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
#lightbox.lb--open .lb-img-wrap {
  transform: scale(1);
}
.lb-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
  object-fit: contain;
}
.lb-caption {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-align: center;
  margin: 0;
  max-width: 600px;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb-close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) translateX(3px); }

@media (max-width: 640px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 12px; }
}
