/* ============================================================
   CLÍNICA HÓRUS  ·  Endocrinologia e Psiquiatria, Itajaí SC
   Visual: branco limpo + marinho + dourado. Clean & elegante.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy:       #1b2740;
  --navy-deep:  #11192b;
  --navy-light: #435276;
  --gold:       #d0bb8a;
  --gold-bright:#e6d2a5;
  --gold-deep:  #a18957;
  --paper:      #f9f6f0;
  --bone:       #ece4d2;

  /* Texto em fundo claro */
  --ink:        #1b2740;
  --ink-soft:   rgba(27, 39, 64, 0.58);
  --ink-mute:   rgba(27, 39, 64, 0.36);

  /* Texto em fundo escuro */
  --cream:      #f2eedf;
  --cream-soft: rgba(242, 238, 223, 0.65);
  --cream-mute: rgba(242, 238, 223, 0.42);

  /* Linhas */
  --line:             rgba(27, 39, 64, 0.1);
  --line-strong:      rgba(27, 39, 64, 0.2);
  --line-dark:        rgba(208, 187, 138, 0.18);
  --line-dark-strong: rgba(208, 187, 138, 0.4);

  /* Tipografia */
  --display: "Josefin Sans", sans-serif;
  --sans:    "Manrope", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Espaçamento */
  --pad-x:   clamp(20px, 4vw, 80px);
  --gutter:  clamp(16px, 2vw, 28px);
  --section: clamp(80px, 10vw, 160px);

  /* Curvas */
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-3d:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--navy-deep);
  overflow-x: clip;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--navy); }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 187, 138, 0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity .5s ease;
  mix-blend-mode: multiply;
  filter: blur(8px);
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(208, 187, 138, 0.7);
}

.section-no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.h-xl {
  font-size: clamp(36px, 6vw, 90px);
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 300;
}

.h-l {
  font-size: clamp(26px, 3.2vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.015em;
  font-weight: 300;
}

.h-m {
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 300;
}

em, .serif-italic {
  font-style: italic;
  color: var(--gold);
}

.gold { color: var(--gold); }

p { max-width: 62ch; }
p + p { margin-top: 1em; }

.lead {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  padding-inline: var(--pad-x);
  margin-inline: auto;
  max-width: 1600px;
}

section { padding-block: var(--section); position: relative; }

.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  background: transparent;
  transition: background .5s var(--ease), border-color .5s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: transparent;
  border-bottom-color: var(--line-dark);
  padding-block: 10px;
}
.site-header.is-scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 25, 43, 0.78);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 50px;
}
.brand img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(208, 187, 138, 0.2));
  transition: transform .4s var(--ease), filter .4s var(--ease);
}
.brand:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 24px rgba(208, 187, 138, 0.4));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  position: relative;
  padding: 6px 0;
  color: var(--cream-soft);
  transition: color .35s var(--ease);
  font-weight: 400;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}

.nav a:hover { color: var(--cream); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px !important;
  border-radius: 100px;
  font-weight: 500;
  transition: all .4s var(--ease);
  box-shadow: 0 6px 20px rgba(208, 187, 138, 0.3);
}
.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(208, 187, 138, 0.4);
}
.nav-cta::after { display: none !important; }
.nav-cta svg { width: 14px; height: 14px; }

/* Nav dropdown submenu */
.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible bridge that keeps hover active while mouse crosses the gap */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy-deep);
  border: 1px solid rgba(208,187,138,.15);
  padding: 24px 28px;
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-col { }
.nav-dropdown-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(208,187,138,.15);
}
.nav-dropdown a {
  display: block;
  font-size: 12px;
  font-family: var(--sans);
  color: rgba(255,255,255,.55) !important;
  padding: 5px 0 !important;
  letter-spacing: .04em;
  transition: color .2s !important;
  white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--cream) !important; }
.nav-dropdown a.active { color: var(--gold) !important; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  position: relative;
  z-index: 51;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.menu-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1px;
  background: var(--gold);
  transition: transform .4s var(--ease), opacity .25s var(--ease);
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, -4px); }
.menu-toggle span:nth-child(2) { transform: translate(-50%, 3px); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }
body.menu-open .menu-toggle { border-color: rgba(208,187,138,0.4); background: rgba(17,25,43,0.6); }
body.menu-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all .4s var(--ease);
  white-space: nowrap;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
}
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px) rotate(-45deg); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(208, 187, 138, 0.3);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(208, 187, 138, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-dark-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Ghost on light bg */
.contact-info .btn-ghost,
.copy-block .btn-ghost,
.map-wrap .btn-ghost,
.body .btn-ghost,
.spec-cta-row .btn-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
}
.contact-info .btn-ghost:hover,
.copy-block .btn-ghost:hover,
.map-wrap .btn-ghost:hover,
.body .btn-ghost:hover,
.spec-cta-row .btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   HERO  ·  Seção escura principal
   ============================================================ */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 0;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--cream);
  perspective: 2200px;
  perspective-origin: 50% 30%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(208, 187, 138, 0.16), transparent 50%),
    radial-gradient(ellipse at 0% 70%, rgba(67, 82, 118, 0.4), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' /></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

.hero-stage {
  position: relative;
  transform-style: preserve-3d;
  padding-inline: var(--pad-x);
  padding-top: 80px;
  padding-bottom: 140px;
  z-index: 1;
}

.hero-monogram {
  position: absolute;
  left: 50%; top: 48%;
  transform: translate(-50%, -50%) translateZ(-200px) rotate(-8deg);
  width: 78vw;
  max-width: 1100px;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-monogram svg { width: 100%; height: auto; }

.hero-rings {
  position: absolute;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  width: 60vw; max-width: 800px; aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(208, 187, 138, 0.05) 0%, transparent 65%);
  animation: pulseRing 8s ease-in-out infinite;
}
.hero-rings::before,
.hero-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(208, 187, 138, 0.07);
}
.hero-rings::before { inset: 12%; }
.hero-rings::after  { inset: 24%; border-color: rgba(208, 187, 138, 0.11); }

@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin-inline: auto;
  transform-style: preserve-3d;
}

.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s var(--ease-out) .2s forwards;
}

.hero-title { position: relative; transform-style: preserve-3d; }

.hero-title h1 {
  font-size: clamp(38px, 6.2vw, 96px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  font-weight: 300;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 4px 0;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-25deg);
  transform-origin: 0% 100%;
  animation: revealLine 1.2s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) .word { animation-delay: .25s; }
.hero-title .line:nth-child(2) .word { animation-delay: .4s; }
.hero-title .line:nth-child(3) .word { animation-delay: .55s; }
.hero-title .line:nth-child(4) .word { animation-delay: .7s; }

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

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

.hero-bottom {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1s var(--ease-out) 1.1s forwards;
}

.hero-bottom .lead { max-width: 42ch; color: var(--cream-soft); }

.hero-cta { display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }
.hero-cta .btn-cta-row { justify-content: flex-end; }

.hero-cta .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-cta .chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  color: var(--cream-mute);
}

.hero-marquee {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  color: var(--cream-mute);
  background: rgba(17, 25, 43, 0.4);
  backdrop-filter: blur(20px);
}
.hero-marquee .track {
  display: inline-flex;
  gap: 60px;
  animation: scroll 60s linear infinite;
  padding-left: 60px;
}
.hero-marquee .track span { display: inline-flex; align-items: center; gap: 60px; }
.hero-marquee .track .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(208, 187, 138, 0.7);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   INTRO  ·  Apresentação com foto 3D
   ============================================================ */
.intro {
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.intro-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-8deg) rotateX(2deg);
  transition: transform 1s var(--ease);
  box-shadow:
    0 50px 100px -20px rgba(27, 39, 64, 0.18),
    0 0 0 1px rgba(27, 39, 64, 0.06);
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.92);
  transition: transform 1s var(--ease);
}
.intro-photo:hover { transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) scale(1.01); }
.intro-photo:hover img { transform: scale(1.05); }

.intro-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(17, 25, 43, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}

.intro-photo .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 10px 16px;
  background: rgba(17, 25, 43, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-dark);
  border-radius: 100px;
}

.intro-body {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.intro-body h2 { margin-top: 10px; color: var(--navy); }

.intro-body p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 300;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
.pillars .pillar {
  padding: 26px 18px 26px 0;
  border-right: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.pillars .pillar:last-child { border-right: 0; padding-right: 0; }
.pillars .pillar:not(:first-child) { padding-left: 18px; }
.pillars .pillar:hover { background: rgba(27, 39, 64, 0.025); }
.pillars .pillar h4 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--navy);
}
.pillars .pillar p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.55;
  font-weight: 300;
}
.pillars .pillar .ind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ============================================================
   ESPECIALIDADES  ·  Cards escuros sobre fundo claro
   ============================================================ */
.specs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  margin-bottom: 56px;
  align-items: end;
}

.specs-head h2 { color: var(--navy); }

.spec-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  perspective: 1800px;
}

.spec-card {
  position: relative;
  padding: 44px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform .15s linear;
  cursor: pointer;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(160deg, rgba(20, 30, 52, 0.70) 0%, rgba(15, 22, 38, 0.76) 100%),
    var(--bg, none);
  background-size: cover;
  background-position: center;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 50px -10px rgba(17, 25, 43, 0.3);
}

.spec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(208, 187, 138, 0.2), transparent 50%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  z-index: 0;
  pointer-events: none;
}

.spec-card:hover::before { opacity: 1; }
.spec-card > * { position: relative; z-index: 1; }

.spec-card .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
  transform: translateZ(30px);
}

.spec-card .doc {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.spec-card .index {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.7;
}

.spec-card h3 {
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  transform: translateZ(50px);
  font-weight: 300;
}

.spec-card p {
  font-size: 14.5px;
  color: var(--cream-soft);
  margin-bottom: 24px;
  max-width: 40ch;
  font-weight: 300;
  line-height: 1.6;
  transform: translateZ(20px);
}

.spec-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  transform: translateZ(20px);
}
.spec-card .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  color: var(--cream-soft);
}

.spec-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gold);
  align-self: flex-start;
  transform: translateZ(30px);
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: all .4s var(--ease);
}
.spec-card .more:hover { background: var(--gold); color: var(--navy); }

.spec-card .deco {
  position: absolute;
  right: -40px; top: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 187, 138, 0.07), transparent 70%);
  z-index: 0;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff {
  padding-block: clamp(80px, 10vw, 140px);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}

.diff-grid h2 { color: var(--navy); }

.diff-list { border-top: 1px solid var(--line); }
.diff-list .row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding .4s var(--ease);
  position: relative;
  cursor: default;
}
.diff-list .row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(208, 187, 138, 0.06), transparent);
  transition: width .5s var(--ease);
  z-index: -1;
}
.diff-list .row:hover { padding-left: 16px; }
.diff-list .row:hover::before { width: 100%; }
.diff-list .row .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.diff-list .row .t {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.diff-list .row .arrow {
  width: 20px; height: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  color: var(--gold);
}
.diff-list .row:hover .arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   CTA FINAL  ·  Seção escura
   ============================================================ */
.cta-final {
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(160deg, rgba(17,25,43,0.72) 0%, rgba(17,25,43,0.58) 100%),
    url(../img/clinica/horus_2026-3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 var(--pad-x);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 80px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  box-shadow: 0 40px 80px -20px rgba(17, 25, 43, 0.2);
}
.cta-final::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 90%; height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(208, 187, 138, 0.2), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-final .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  max-width: 1400px;
  margin-inline: auto;
}
.cta-final h2 {
  font-size: clamp(22px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: 0.01em;
  max-width: 18ch;
  font-weight: 300;
}
.cta-final .channels {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ============================================================
   PAGE HERO  ·  Páginas internas (seção escura)
   ============================================================ */
.page-hero {
  padding: 180px var(--pad-x) 100px;
  position: relative;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(160deg, rgba(17, 25, 43, 0.62) 0%, rgba(17, 25, 43, 0.48) 100%),
    var(--bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(208, 187, 138, 0.12), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.page-hero .crumbs a { color: var(--gold); }
.page-hero .crumbs .sep { margin: 0 10px; }

.page-hero h1 {
  font-size: clamp(28px, 3.8vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  max-width: 20ch;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.page-hero .sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--cream-soft);
  max-width: 54ch;
  margin-top: 24px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Hero sem imagem de fundo — variante CSS pura */
.page-hero--plain {
  background-image:
    radial-gradient(ellipse 80% 70% at 92% 55%, rgba(208,187,138,0.09) 0%, transparent 62%),
    linear-gradient(148deg, #0c1420 0%, #16233a 45%, #0c1420 100%);
}
.page-hero--plain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208,187,138,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,187,138,0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  pointer-events: none;
  z-index: 0;
}

/* Monograma decorativo nas páginas internas de doenças */
.page-hero-monogram {
  position: absolute;
  right: -3vw; top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 58vw;
  max-width: 860px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  animation: heroMonoFloat 14s ease-in-out infinite;
}
.page-hero-monogram svg { width: 100%; height: auto; }

@keyframes heroMonoFloat {
  0%, 100% { transform: translateY(-50%) rotate(-8deg); }
  50%       { transform: translateY(-52%) rotate(-6.5deg); }
}

/* Animações de entrada do texto no hero de páginas internas */
.page-hero--plain .crumbs {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.8s var(--ease-out) 0.1s forwards;
}
.page-hero--plain h1 {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 1s var(--ease-out) 0.28s forwards;
}
.page-hero--plain .sub {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.8s var(--ease-out) 0.52s forwards;
}

/* ============================================================
   PROFISSIONAIS  ·  Cards perfil
   ============================================================ */
.doctor {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-block: clamp(60px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.doctor:last-child { border-bottom: 0; }

.doctor .portrait {
  position: sticky;
  top: 110px;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-light);
  transform: perspective(1500px) rotateY(-6deg) rotateX(2deg);
  transition: transform 1s var(--ease);
  box-shadow: 0 40px 80px -20px rgba(27, 39, 64, 0.2);
}
.doctor .portrait:hover { transform: perspective(1500px) rotateY(-3deg) rotateX(1deg); }
.doctor .portrait img { width: 100%; height: 100%; object-fit: cover; }
.doctor .portrait::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
}
.doctor .portrait:has(img)::after { display: none; }

.doctor .info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.doctor h2 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: var(--navy);
}

.doctor .creds {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.doctor .bio { font-size: 16px; line-height: 1.65; max-width: 58ch; color: var(--ink-soft); font-weight: 300; }
.doctor .bio + .bio { margin-top: 1em; }

.doctor h3 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.doctor ul.list-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.doctor ul.list-mark li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
  color: var(--ink-soft);
}
.doctor ul.list-mark li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* ============================================================
   COPY BLOCKS  ·  Páginas internas
   ============================================================ */
.copy-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  padding-block: clamp(60px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.copy-block .meta { position: sticky; top: 110px; }
.copy-block .meta .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.copy-block .meta h2 {
  font-size: clamp(24px, 2.8vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: var(--navy);
}

.copy-block .body p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  max-width: 62ch;
  color: var(--ink-soft);
  font-weight: 300;
}
.copy-block .body p + p { margin-top: 1.2em; }

.copy-block .body h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 24px);
  margin-top: 2em;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  color: var(--navy);
}

/* ============================================================
   SERVICE ROW
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: clamp(20px, 3vw, 60px);
  padding: 50px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding .4s var(--ease);
}
.service-row:hover { padding-left: 16px; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.service-row h3 {
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: var(--navy);
}
.service-row .meta-line {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-row .desc { font-size: 15px; line-height: 1.65; color: var(--ink-soft); font-weight: 300; }
.service-row .desc p + p { margin-top: 1em; }
.service-row .cta {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  color: var(--gold);
}
.service-row .cta:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.svc-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-mute);
}
.svc-info-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.svc-info-item { display: flex; flex-direction: column; gap: 4px; }
.svc-info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-info-val { font-size: 14px; color: var(--ink-soft); font-weight: 300; }

/* ============================================================
   SVC CARD GRID  ·  Redesign da página de Serviços
   ============================================================ */
.svc-section {
  padding-block: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.svc-cat {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  padding-bottom: 36px;
  margin-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.svc-cat-kicker { display: flex; flex-direction: column; gap: 10px; }
.svc-cat-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-cat h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1;
  margin: 0;
}
.svc-cat-desc {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--ink-mute);
  font-weight: 300;
  max-width: 36ch;
  text-align: right;
  line-height: 1.6;
}
.svc-grid { display: grid; gap: 20px; }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
  transition: border-color .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-card:hover {
  border-color: rgba(208,187,138,.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(17,25,43,.08);
}
.svc-card-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.svc-card--tall .svc-card-img { aspect-ratio: 16/9; }
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: clamp(20px, 2.5vw, 32px); }
.svc-card-num {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.svc-card h3 {
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card > .svc-card-body > p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 14px;
}
.svc-section--psy .svc-cat-badge { color: var(--ink-mute); }
.svc-particular-section { padding-block: clamp(60px, 8vw, 100px); }
.svc-particular {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.svc-particular-img { overflow: hidden; aspect-ratio: 4/5; }
.svc-particular-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.svc-particular-body .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.svc-particular-body h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
.svc-particular-body > p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 52ch;
}
@media (max-width: 900px) {
  .svc-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid--2 { grid-template-columns: 1fr; }
  .svc-particular { grid-template-columns: 1fr; }
  .svc-particular-img { aspect-ratio: 16/9; }
  .svc-cat-desc { text-align: left; }
}
@media (max-width: 640px) {
  .svc-grid--3 { grid-template-columns: 1fr; }
  .svc-cat { flex-direction: column; align-items: flex-start; gap: 12px; }
  .svc-cat-desc { max-width: 100%; }
}

/* ============================================================
   SVC SPLIT  ·  Layout editorial imagem + texto
   ============================================================ */
.svc-specialty { border-top: 1px solid var(--line); }
.svc-specialty-hd {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-block: clamp(48px, 6vw, 80px) clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
}
.svc-specialty-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 6px;
}
.svc-specialty-hd h2 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 0.95;
  margin: 0;
}
.svc-specialty-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: auto;
  padding-bottom: 6px;
}
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.svc-split--reverse .svc-split-img { order: 2; }
.svc-split--reverse .svc-split-body { order: 1; }
.svc-split-img { overflow: hidden; }
.svc-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .9s var(--ease);
}
.svc-split:hover .svc-split-img img { transform: scale(1.04); }
.svc-split-body {
  padding: clamp(40px, 5vw, 80px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-split-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.svc-split-equip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 20px;
  margin-top: -8px;
}
.svc-split-body h3 {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.svc-split-body p {
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 54ch;
}
.svc-split-body p + p { margin-top: 1em; }
.svc-split-body .svc-tags { margin-top: 20px; }
.svc-split-body .cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 14px 24px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  align-self: flex-start;
}
.svc-split-body .cta svg {
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.svc-split-body .cta:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.svc-split-body .cta:hover svg { transform: translateX(4px); }
@media (max-width: 860px) {
  .svc-split { grid-template-columns: 1fr; min-height: auto; }
  .svc-split--reverse .svc-split-img { order: 0; }
  .svc-split--reverse .svc-split-body { order: 0; }
  .svc-split-img { aspect-ratio: 3/2; }
  .svc-specialty-hd h2 { font-size: clamp(32px, 8vw, 56px); }
}

/* ============================================================
   SPEC DUAL  ·  Dois painéis contraste — Especialidades
   ============================================================ */
.spec-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.spec-panel {
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5.5vw, 72px);
  display: flex;
  flex-direction: column;
}
.spec-panel--light { background: var(--cream); }
.spec-panel--dark  { background: var(--navy); border-left: 1px solid var(--line); }

.spec-panel-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.spec-panel h2 {
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 32px;
}
.spec-panel--light h2 { color: var(--navy); }
.spec-panel--dark  h2 { color: var(--cream); }

.spec-panel-doc {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.spec-panel--dark .spec-panel-doc { border-bottom-color: rgba(255,255,255,0.10); }
.spec-panel-doc-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.spec-panel-doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.spec-panel-doc-role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}
.spec-panel--light .spec-panel-doc-role { color: var(--ink-mute); }
.spec-panel--dark  .spec-panel-doc-role { color: rgba(255,255,255,0.38); }
.spec-panel-doc-name {
  font-size: 13px;
  font-weight: 400;
  display: block;
}
.spec-panel--light .spec-panel-doc-name { color: var(--navy); }
.spec-panel--dark  .spec-panel-doc-name { color: var(--cream); }

.spec-panel-desc {
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.78;
  font-weight: 300;
  max-width: 48ch;
  margin-bottom: 32px;
}
.spec-panel--light .spec-panel-desc { color: var(--ink-soft); }
.spec-panel--dark  .spec-panel-desc { color: rgba(255,255,255,0.62); }

.spec-panel-signs-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.spec-panel-signs { margin-bottom: 36px; }
.spec-panel-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
}
.spec-panel--dark .spec-panel-sign { border-bottom-color: rgba(255,255,255,0.08); }
.spec-panel-sign-n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--gold);
  flex-shrink: 0;
  width: 20px;
}
.spec-panel-sign-label {
  font-size: clamp(13px, 0.95vw, 14px);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.spec-panel--light .spec-panel-sign-label { color: var(--navy); }
.spec-panel--dark  .spec-panel-sign-label { color: rgba(255,255,255,0.80); }

.spec-panel .btn { align-self: flex-start; margin-top: auto; }
.spec-panel--dark .btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.spec-panel--dark .btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.spec-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid;
  margin-top: 14px;
  transition: color .2s, border-color .2s;
}
.spec-panel--light .spec-panel-link { color: var(--ink-mute); border-bottom-color: var(--line); }
.spec-panel--light .spec-panel-link:hover { color: var(--gold); border-color: var(--gold); }
.spec-panel--dark  .spec-panel-link { color: rgba(255,255,255,0.35); border-bottom-color: rgba(255,255,255,0.15); }
.spec-panel--dark  .spec-panel-link:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 860px) {
  .spec-dual { grid-template-columns: 1fr; }
  .spec-panel--dark { border-left: none; border-top: 1px solid rgba(255,255,255,0.10); }
}

/* ============================================================
   CAT HEADER  ·  Endo/Psi separadores
   ============================================================ */
.cat-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 80px;
  margin-bottom: 30px;
}
.cat-header .pip {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(208, 187, 138, 0.6);
}
.cat-header.psy .pip { background: var(--navy-light); box-shadow: 0 0 14px rgba(67, 82, 118, 0.6); }
.cat-header h2 {
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing: 0.02em;
  font-weight: 300;
  color: var(--navy);
}
.cat-header .count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   DOENÇAS  ·  Navegação rápida
   ============================================================ */
.diseases-nav {
  padding-block: 32px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diseases-nav-group {
  display: flex;
  align-items: flex-start;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.dnav-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 90px;
}
.dnav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dnav-links a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.dnav-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(208, 187, 138, 0.06);
}

/* ============================================================
   DOENÇAS  ·  Catálogo
   ============================================================ */
.diseases { border-top: 1px solid var(--line); }
.disease {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: clamp(20px, 3vw, 60px);
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .4s var(--ease);
}
.disease:hover { background: rgba(208, 187, 138, 0.04); }
.disease .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.disease h3 {
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 300;
  color: var(--navy);
}
.disease p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 70ch;
  font-weight: 300;
}
.disease p + p { margin-top: .8em; }

/* ============================================================
   SIGNS  ·  Quando procurar
   ============================================================ */
.signs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  margin-top: 28px;
}
.signs li {
  font-size: 15px;
  padding: 15px 0 15px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 300;
}
.signs li::before {
  content: "+";
  position: absolute;
  left: 0; top: 15px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 14px;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.contact-block .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-block .value {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.contact-block .value a:hover { color: var(--gold); }
.contact-block .small {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 300;
}

.contact-form {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px -10px rgba(17, 25, 43, 0.2);
  color: var(--cream);
}
.contact-form h3 {
  font-size: clamp(20px, 1.6vw, 28px);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: var(--cream);
}
.contact-form .hint {
  font-size: 14px;
  color: var(--cream-mute);
  margin-bottom: 28px;
  font-weight: 300;
}

.contact-form .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form .form-status {
  min-height: 20px;
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.4;
}

.contact-form .form-status.is-loading { color: var(--cream-mute); }
.contact-form .form-status.is-success { color: #cdebc7; }
.contact-form .form-status.is-error { color: #ffd1d1; }

.contact-form button[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 11px 0;
  color: var(--cream);
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.field textarea {
  min-height: 88px;
  resize: vertical;
  font-family: var(--sans);
}
.field input::placeholder, .field textarea::placeholder { color: var(--cream-mute); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field select option { background: var(--navy-deep); color: var(--cream); }

.map-tabs {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(27,39,64,0.07);
  border-radius: 100px;
  margin-bottom: 12px;
}
.map-tab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--ink-mute);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.map-tab.is-active {
  background: var(--navy-deep);
  color: var(--cream);
}
.map-wrap .map-frame { margin-top: 0; }

.map-frame {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 50px -10px rgba(27, 39, 64, 0.12);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  padding: 0 var(--pad-x) 40px;
  background: var(--navy-deep);
  color: var(--cream);
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  height: 38px;
  flex-shrink: 0;
  display: block;
}
.footer-brand img { height: 100%; width: auto; }

.footer-links {
  display: flex;
  gap: 6px 24px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  transition: color .3s var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.footer-contacts a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-soft);
  transition: color .3s var(--ease);
}
.footer-contacts a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  padding-right: 90px; /* clearance for fixed WhatsApp FAB */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-mute);
  flex-wrap: nowrap;
  gap: 16px;
}
.footer-bottom a:hover { color: var(--gold); }

.footer-marquee {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.footer-marquee .big {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  display: inline-flex;
  gap: 80px;
  animation: scroll 50s linear infinite;
  color: var(--gold);
}
.footer-marquee .big span { display: inline-flex; align-items: center; gap: 80px; }
.footer-marquee .big .star {
  font-style: normal;
  font-size: 0.4em;
  vertical-align: middle;
  color: var(--gold-bright);
}

/* ============================================================
   FAB WhatsApp
   ============================================================ */
.fab-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #1ea952);
  border-radius: 50%;
  z-index: 45;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
body.menu-open .fab-wa { opacity: 0; pointer-events: none; }
.fab-wa:hover { transform: scale(1.1) translateY(-2px); }
.fab-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
.fab-wa svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   Reveal animations
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: block; }

  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(17, 25, 43, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px var(--pad-x) 40px;
    gap: 20px;
    z-index: 40;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open a { font-family: var(--display); font-size: 30px; letter-spacing: 0.02em; color: var(--cream); }
  .nav.is-open a.active { color: var(--gold); }
  .nav.is-open .nav-cta { font-family: var(--sans); font-size: 14px; margin-top: 24px; }

  /* Dropdown on mobile */
  .nav.is-open .nav-has-dropdown { width: 100%; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav.is-open .nav-has-dropdown::after { display: none; }
  .nav.is-open .nav-has-dropdown > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .nav.is-open .nav-has-dropdown > a::after {
    content: '▾';
    position: static;
    left: auto;
    bottom: auto;
    width: auto !important;
    height: auto;
    margin-left: auto;
    background: none !important;
    border: 0;
    font-family: var(--sans);
    font-size: 0.68em;
    line-height: 1;
    color: rgba(242, 238, 223, 0.66);
    transform: translateY(1px);
    transition: transform .28s var(--ease), color .28s var(--ease);
    flex-shrink: 0;
  }
  .nav.is-open .nav-has-dropdown.is-open > a { color: var(--gold); }
  .nav.is-open .nav-has-dropdown.is-open > a::after {
    transform: rotate(180deg) translateY(-1px);
    color: var(--gold);
  }
  .nav.is-open .nav-dropdown { position: static; transform: none; opacity: 1; pointer-events: none; background: transparent; border: none; border-top: 0; padding: 0 0 0 12px; min-width: unset; width: 100%; display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 0; max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .35s var(--ease), margin-top .35s var(--ease), padding .35s var(--ease); }
  .nav.is-open .nav-has-dropdown.is-open .nav-dropdown { max-height: 70vh; pointer-events: auto; overflow-y: auto; visibility: visible; margin-top: 6px; padding: 10px 0 8px 12px; border-top: 1px solid rgba(255,255,255,.08); }
  .nav.is-open .nav-dropdown-col + .nav-dropdown-col { margin-top: 10px; }
  .nav.is-open .nav-dropdown a { font-size: 16px !important; font-family: var(--display) !important; letter-spacing: .02em; color: rgba(255,255,255,.5) !important; padding: 5px 0 !important; }
  .nav.is-open .nav-dropdown a:hover,
  .nav.is-open .nav-dropdown a.active { color: var(--gold) !important; }
  .nav.is-open .nav-dropdown-cat { font-size: 9px; margin-bottom: 6px; padding-bottom: 6px; }

  .hero-title h1 { font-size: clamp(36px, 10vw, 84px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta { align-items: flex-start; }
  .hero-cta .btn-cta-row, .hero-cta .chips { justify-content: flex-start; }

  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-photo { max-width: 460px; transform: none; }

  .pillars { grid-template-columns: 1fr; }
  .pillars .pillar { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .pillars .pillar:not(:first-child) { padding-left: 0; }

  .specs-head { grid-template-columns: 1fr; }
  .spec-cards { grid-template-columns: 1fr; }

  .diff-grid { grid-template-columns: 1fr; }
  .cta-final .inner { grid-template-columns: 1fr; }

  .doctor { grid-template-columns: 1fr; }
  .doctor .portrait { position: static; max-width: 380px; transform: none; }
  .doctor ul.list-mark { grid-template-columns: 1fr; }

  .copy-block { grid-template-columns: 1fr; }
  .copy-block .meta { position: static; }

  .service-row { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
  .disease { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; }
  .disease .dis-saiba-mais { grid-column: auto; margin-top: 20px; gap: 14px; }
  .disease .dis-saiba-mais .arc { width: 34px; height: 34px; font-size: 14px; }
  .signs { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { justify-content: flex-start; gap: 20px; }
  .footer-links { justify-content: flex-start; flex: 0 0 100%; order: 2; }
  .page-hero { padding-top: 140px; padding-bottom: 70px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 100px; min-height: 88vh; }
  .hero-stage { padding-top: 40px; padding-bottom: 80px; }
  .spec-card { padding: 30px 26px; min-height: 0; }
  .spec-card .head { margin-bottom: 50px; }
  .doctor .portrait { max-width: 100%; }
  .footer-contacts { flex: 0 0 100%; order: 3; }
  .contact-form { padding: 26px; }
  .cta-final { margin: 0 12px; padding: 40px 24px; border-radius: 16px; }
  .page-hero { padding-top: 110px; padding-bottom: 50px; }
  .footer-bottom { flex-direction: row; justify-content: center; gap: 12px; text-align: center; padding-right: 90px; font-size: 10px; }
}

/* ============================================================
   DOENÇA  ·  Página interna
   ============================================================ */

/* Intro editorial */
.dis-intro {
  padding-block: clamp(64px, 8vw, 108px);
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.dis-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.dis-intro h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 100;
  line-height: 1.22;
  color: var(--navy-deep);
  margin-bottom: 28px;
}
.dis-intro h2 em { font-style: italic; }
.dis-intro p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.2em;
}

/* Facts strip */
.dis-facts {
  background: var(--navy-deep);
  padding-block: clamp(44px, 5.5vw, 72px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dis-facts-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-left: 1px solid rgba(255,255,255,.08);
}
.dis-fact {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.dis-fact-n {
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 100;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.dis-fact-label {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
  font-weight: 300;
}

/* Section containers */
.dis-section {
  padding-block: clamp(60px, 7vw, 96px);
  border-top: 1px solid var(--line);
}
.dis-section-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.dis-section h2 {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 100;
  color: var(--navy-deep);
  margin-bottom: clamp(36px, 4.5vw, 60px);
  line-height: 1.25;
}
.dis-section h2 em { font-style: italic; }

/* Type cards grid */
.dis-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  border: 1px solid var(--line);
}
.dis-type {
  padding: clamp(28px, 3vw, 44px);
  background: var(--cream-soft);
}
.dis-type--dark {
  background: var(--cream-soft);
}
.dis-type-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.dis-type h3 {
  font-family: var(--display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  color: var(--navy-deep);
  margin-bottom: 14px;
  line-height: 1.25;
}
.dis-type--dark h3 { color: var(--navy-deep); }
.dis-type p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}
.dis-type--dark p { color: var(--ink-soft); }

/* Symptom two-column */
.dis-symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.dis-symptoms-col h3 {
  font-family: var(--display);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--navy-deep);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.dis-sym-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dis-sym-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}
.dis-sym-list li::before {
  content: '+';
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Doctor badge inside section */
.dis-doctor-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 32px);
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.dis-doctor-badge img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.dis-doctor-badge-info { display: flex; flex-direction: column; gap: 2px; }
.dis-doctor-badge-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.dis-doctor-badge-name {
  font-family: var(--display);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--navy-deep);
}
.dis-treatment-body p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1em;
}
.dis-treatment-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.dis-treatment-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}
.dis-treatment-list li::before {
  content: '↳';
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ accordion */
.dis-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.dis-faq-item {
  border-bottom: 1px solid var(--line);
}
.dis-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.dis-faq-q {
  font-family: var(--display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  color: var(--navy-deep);
  line-height: 1.3;
  transition: color .25s;
}
.dis-faq-item.is-open .dis-faq-q { color: var(--gold); }
.dis-faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .3s, background .3s;
}
.dis-faq-icon::before,
.dis-faq-icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 1px;
  background: currentColor;
  color: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .35s;
}
.dis-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.dis-faq-item.is-open .dis-faq-icon {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.dis-faq-item.is-open .dis-faq-icon::before { opacity: 0; }
.dis-faq-item.is-open .dis-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  background: var(--cream);
}
.dis-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .48s cubic-bezier(.4, 0, .2, 1);
}
.dis-faq-a {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.78;
  color: var(--ink-soft);
  padding-bottom: 26px;
  font-weight: 300;
  margin: 0;
}

/* Saiba mais — CTA editorial nos cards de doença */
.disease .dis-saiba-mais {
  grid-column: 3;
  justify-self: start;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy-deep);
  text-decoration: none;
  white-space: nowrap;
  isolation: isolate;
}
.disease .dis-saiba-mais::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: calc(100% - 56px);
  background: var(--line-strong);
  transform-origin: left center;
  transition: background .4s var(--ease);
}
.disease .dis-saiba-mais > .ln {
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .55s var(--ease);
  z-index: 1;
}
.disease .dis-saiba-mais:hover > .ln { width: calc(100% - 56px); }
.disease .dis-saiba-mais .arc {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--navy-deep);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: auto;
  transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.disease .dis-saiba-mais .arc::after {
  content: '→';
  transition: transform .4s var(--ease);
}
.disease .dis-saiba-mais:hover { color: var(--gold-deep); }
.disease .dis-saiba-mais:hover .arc {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--cream);
}
.disease .dis-saiba-mais:hover .arc::after { transform: translateX(3px); }
.disease .dis-saiba-mais:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: 2px;
}

/* Navigation strip to other diseases */
.dis-nav-strip {
  background: var(--cream-soft);
  padding-block: clamp(44px, 5.5vw, 72px);
  border-top: 1px solid var(--line);
}
.dis-nav-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.dis-nav-strip-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}
.dis-nav-strip-header span {
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 100;
  color: var(--navy-deep);
}
.dis-nav-all {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-left: auto;
  transition: opacity .2s;
}
.dis-nav-all:hover { opacity: .7; }
.dis-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dis-nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid var(--line);
  transition: border-color .2s, color .2s, background .2s;
  font-weight: 300;
}
.dis-nav-links a:hover {
  border-color: var(--navy);
  color: var(--navy-deep);
}
.dis-nav-links a.active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--cream);
}

/* Responsive disease inner */
@media (max-width: 860px) {
  .dis-symptoms-grid { grid-template-columns: 1fr; }
  .dis-types-grid { grid-template-columns: 1fr; }
  .dis-facts-inner { grid-template-columns: 1fr 1fr; }
  .page-hero-monogram { width: 80vw; right: -8vw; opacity: 0.07; }
}
@media (max-width: 640px) {
  .dis-facts-inner { grid-template-columns: 1fr; }
  .dis-fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .dis-nav-strip-header { flex-wrap: wrap; }
  .dis-nav-all { margin-left: 0; }
  /* Hero */
  .page-hero-monogram { display: none; }
  /* FAQ */
  .dis-faq-q { font-size: 14px; }
  .dis-faq-summary { padding: 18px 0; gap: 14px; }
  .dis-faq-icon { width: 30px; height: 30px; }
  /* Doctor badge */
  .dis-doctor-badge { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* Intro */
  .dis-intro { padding-block: clamp(44px, 8vw, 72px); }
  /* Nav links */
  .dis-nav-links a { padding: 10px 14px; font-size: 12px; }
  /* Section spacing */
  .dis-section { padding-block: clamp(44px, 7vw, 72px); }
}

