/* ============================================================
   PAULA SÁLVIA TRINDADE — PSICÓLOGA CLÍNICA
   style.css — Versão 1.0
   Arquitetura: Mobile-first, BEM-like, sem framework
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  color: #1a1a2e;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── VARIÁVEIS DE DESIGN ───────────────────────────────────── */
:root {
  /* Paleta */
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --beige:       #f5f0e8;
  --beige-dark:  #ede8df;
  --navy:        #1a2744;
  --navy-mid:    #22335a;
  --navy-light:  #2d4270;
  --gold:        #c9a84c;
  --gold-light:  #d4b466;
  --gold-subtle: #f0e8d0;
  --text-primary:   #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted:     #8888a8;
  --text-light:     rgba(255,255,255,0.85);
  --text-light-dim: rgba(255,255,255,0.55);
  --border-light:   rgba(26,39,68,0.1);
  --border-gold:    rgba(201,168,76,0.3);

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  /* Espaçamentos */
  --section-py: clamp(5rem, 10vw, 9rem);
  --container-px: clamp(1.5rem, 5vw, 2.5rem);
  --max-width: 1200px;

  /* Efeitos */
  --shadow-sm:  0 1px 3px rgba(26,39,68,0.06), 0 1px 2px rgba(26,39,68,0.04);
  --shadow-md:  0 4px 16px rgba(26,39,68,0.08), 0 2px 6px rgba(26,39,68,0.05);
  --shadow-lg:  0 12px 40px rgba(26,39,68,0.12), 0 4px 16px rgba(26,39,68,0.06);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.2);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Transições */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;
}

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

.bg-beige { background-color: var(--beige); }
.bg-navy  { background-color: var(--navy); }

/* ─── ANIMAÇÕES DE SCROLL ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp var(--duration-slow) var(--ease-out) 0.1s forwards;
}
.fade-in-delay {
  animation-delay: 0.3s;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── BOTÕES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--duration-fast) var(--ease-out);
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  border-color: var(--navy);
  background-color: rgba(26,39,68,0.04);
}

.btn-nav {
  background-color: transparent;
  color: var(--navy);
  border: 1px solid var(--border-light);
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
}
.btn-nav:hover {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.btn-mobile {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── NAVEGAÇÃO ─────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--duration-base) var(--ease-out),
              backdrop-filter var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.nav-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.25rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-title {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background-color: var(--gold);
  transition: width var(--duration-base) var(--ease-out);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--navy);
  transition: all var(--duration-base) var(--ease-out);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}
.nav-mobile.open {
  max-height: 600px;
}
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem var(--container-px) 1.75rem;
}
.nav-mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--duration-fast);
}
.nav-mobile-link:hover { color: var(--navy); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  padding-inline: var(--container-px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 640px;
  width: 100%;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.hero-pretitle {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--navy-light);
}

/* Hero mobile: sem overflow, tudo visível */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
    overflow: visible;
  }
  .hero-content {
    gap: 2.5rem;
  }
  .hero-image-wrapper {
    max-width: 100%;
  }
  .hero-image-accent {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-subtle), transparent);
  max-width: 80px;
}

.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.hero-location svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.hero-quote {
  margin-bottom: 2.25rem;
}
.hero-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.hero-quote p:last-child { margin-bottom: 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Imagem hero */
.hero-image-wrapper {
  width: 100%;
  max-width: 420px;
  position: relative;
  flex-shrink: 0;
}
.hero-image-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--beige);
  box-shadow: var(--shadow-lg);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--beige) 0%, var(--beige-dark) 100%);
  color: var(--text-muted);
}
.hero-image-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 3rem;
  margin-inline: auto;
}
.scroll-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
  animation: scrollPulse 1.6s var(--ease-in-out) infinite;
}
.scroll-dot:nth-child(1) { animation-delay: 0s; }
.scroll-dot:nth-child(2) { animation-delay: 0.2s; }
.scroll-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* ─── STATS ─────────────────────────────────────────────────── */
.stats {
  padding-block: 3.5rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1rem 2rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.stat-sep {
  width: 1px;
  height: 50px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ─── SEÇÕES GENÉRICAS ──────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-label--light { color: rgba(201,168,76,0.85); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

.section-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.section-line--gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.8;
}

/* ─── SOBRE ─────────────────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.sobre-image {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}
.sobre-image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
  box-shadow: var(--shadow-lg);
}
.sobre-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--beige) 0%, var(--beige-dark) 100%);
  color: var(--text-muted);
}
.sobre-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.sobre-content p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.sobre-intro {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  font-weight: 300;
  color: var(--navy) !important;
  line-height: 1.7 !important;
}

.credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.credentials li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── PROCESSO / PSICOTERAPIA ───────────────────────────────── */
.processo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.processo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.processo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.processo-num {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  user-select: none;
}
.processo-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.processo-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.processo-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── PSICANÁLISE ───────────────────────────────────────────── */
.psicanalise-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.psicanalise-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.psicanalise-text .section-title { margin-bottom: 0.75rem; }

/* ─── ÁREAS DE ATUAÇÃO (Psicanálise) ───────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.area-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--off-white);
  transition: all var(--duration-base) var(--ease-out);
}
.area-item:hover {
  border-color: var(--border-gold);
  background: var(--gold-subtle);
  transform: translateX(4px);
}
.area-item > svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.area-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.area-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Manter tags compatíveis */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.tag {
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: var(--gold-subtle);
  transition: all var(--duration-fast) var(--ease-out);
}
.tag:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Card com citação psicanalítica */
.psicanalise-visual {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}
.psi-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.psi-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.psi-quote-icon {
  color: var(--gold);
  opacity: 0.5;
}
.psi-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.psi-quote-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.psi-ornament {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* ─── ATENDIMENTO ───────────────────────────────────────────── */
.atend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.atend-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  transition: all var(--duration-base) var(--ease-out);
}
.atend-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.atend-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.atend-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.atend-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.atend-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.atend-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light-dim);
  letter-spacing: 0.02em;
}
.atend-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--beige-dark);
}
.faq-item:first-child {
  border-top: 1px solid var(--beige-dark);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-out);
}
.faq-q:hover { color: var(--navy-mid); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--duration-base) var(--ease-out);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--duration-slow) var(--ease-out),
              padding var(--duration-slow) var(--ease-out);
}
.faq-a:not([hidden]) {
  max-height: 400px;
  padding-bottom: 1.5rem;
}
.faq-a p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* ─── CONTATO ───────────────────────────────────────────────── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.contato-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--duration-fast);
  text-decoration: none;
  color: inherit;
}
.contato-item:first-child { border-top: 1px solid var(--border-light); }
.contato-item--highlight .contato-icon { background: var(--navy); color: var(--white); }
.contato-item--highlight:hover .contato-icon {
  background: var(--navy-mid);
}

.contato-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: all var(--duration-base) var(--ease-out);
}
.contato-item:hover .contato-icon {
  border-color: var(--gold);
  color: var(--gold);
}
.contato-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contato-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
}

/* CTA card */
.cta-card {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.cta-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
}
.cta-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
.cta-footnote {
  font-size: 0.78rem !important;
  text-align: center;
  margin-bottom: 0 !important;
  margin-top: 1rem;
  color: var(--text-muted) !important;
}
.cta-footnote a {
  color: var(--navy);
  border-bottom: 1px solid var(--border-light);
  transition: border-color var(--duration-fast);
}
.cta-footnote a:hover { border-color: var(--gold); }

/* ─── MAPA ──────────────────────────────────────────────────── */
.mapa-section {}
.mapa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.mapa-locais {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.mapa-local h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}
.mapa-local address p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}
.mapa-metro {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}
.mapa-metro svg { color: var(--gold); }

.mapa-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: var(--beige-dark);
  box-shadow: var(--shadow-sm);
}
.mapa-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.mapa-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  min-height: 360px;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}
.mapa-placeholder p {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ─── RODAPÉ ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding-block: 4rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.footer-role {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.footer-crp {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-light-dim);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light-dim);
  max-width: 280px;
}
.footer-heading {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a,
.footer-contact-col a,
.footer-contact-col span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light-dim);
  transition: color var(--duration-fast);
}
.footer-nav a:hover,
.footer-contact-col a:hover { color: var(--white); }
.footer-contact-col svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text-light-dim);
}

/* ─── BOTÃO WHATSAPP FLUTUANTE ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--duration-base) var(--ease-out);
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-float:active { transform: scale(0.97); }

/* ─── RESPONSIVO — TABLET (≥ 768px) ────────────────────────── */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
  }
  .hero-text { max-width: none; flex: 1; }
  .hero-image-wrapper { max-width: 360px; }

  .sobre-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .sobre-image { margin-inline: 0; }

  .processo-grid { grid-template-columns: repeat(2, 1fr); }

  .psicanalise-layout { grid-template-columns: 1.2fr 1fr; gap: 5rem; }
  .psicanalise-visual { margin-inline: 0; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .atend-grid { grid-template-columns: repeat(2, 1fr); }

  .contato-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }

  .mapa-grid { grid-template-columns: 1fr 1.6fr; gap: 4rem; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ─── RESPONSIVO — DESKTOP (≥ 1024px) ──────────────────────── */
@media (min-width: 1024px) {
  .hero-image-wrapper { max-width: 420px; }
  .processo-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ACESSIBILIDADE ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in, .reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* ─── PRINT ─────────────────────────────────────────────────── */
@media print {
  .nav-header, .hero-scroll, .whatsapp-float, .btn { display: none; }
  .hero { min-height: auto; padding-top: 0; }
  * { color: #000 !important; background: transparent !important; }
}

/* ─── CARDS DE ARTIGOS (Conteúdos) ─────────────────────── */
.artigos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
}

.artigo-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--duration-base) var(--ease-out);
}
.artigo-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.artigo-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.artigo-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--beige);
  flex-shrink: 0;
}
.artigo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform var(--duration-slow) var(--ease-out);
}
.artigo-card:hover .artigo-card-img img {
  transform: scale(1.04);
}

.artigo-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.artigo-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.artigo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}

.artigo-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.artigo-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.artigo-autor { font-weight: 400; color: var(--navy); }
.artigo-sep { color: var(--border-gold); }

@media (min-width: 640px) {
  .artigos-grid { grid-template-columns: repeat(2, 1fr); }
  .artigo-card-link { flex-direction: column; }
}
@media (min-width: 1024px) {
  .artigos-grid { grid-template-columns: repeat(3, 1fr); }
}

