/* Dr. Guilherme Bersou — site pessoal
   Paleta: verde-musgo #35423B + champagne #D6CBAD + branco
   Tipografia: Cinzel (títulos) + Inter (corpo) */

:root {
  /* Paleta oficial da marca: verde-musgo #35423B + champagne #D6CBAD */
  --moss-950: #1c231e;
  --moss-900: #35423b;
  --moss-800: #465547;
  --moss-700: #5b6c58;
  --gold-500: #b99f74;
  --gold-400: #d6cbad;
  --gold-100: #f1ecdf;
  --cream-050: #faf9f5;
  --cream-100: #f2efe6;
  --ink-900: #191a1c;
  --ink-600: #4c5157;
  --ink-400: #7a828a;
  --white: #ffffff;
  --line: rgba(53, 66, 59, 0.14);
  --shadow-soft: 0 20px 60px rgba(28, 35, 30, 0.16);
  --radius-lg: 18px;
  --radius-md: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--cream-050);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  color: var(--moss-900);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

/* Fotografia editorial em preto e branco, conforme identidade visual */
.photo-mono {
  filter: grayscale(100%) contrast(1.06) brightness(1.02);
}
.photo-mono:hover { filter: grayscale(60%) contrast(1.04) brightness(1.02); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--moss-900);
}
.brand-tag {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 2px;
}

.brand {
  align-items: flex-start;
}
.brand-clinic-logo {
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
  align-self: flex-start;
  flex-shrink: 0;
  border-radius: 3px;
  margin-top: 5px;
  display: block;
}
.footer-grid .brand-clinic-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  border-radius: 5px;
  margin-top: 14px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-600);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--moss-900); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--moss-950);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(185, 159, 116, 0.35); }
.btn-outline {
  border-color: rgba(53, 66, 59, 0.28);
  color: var(--moss-900);
  background: transparent;
}
.btn-outline:hover { border-color: var(--moss-900); background: var(--moss-900); color: var(--white); }
.btn-ghost-light {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--moss-900);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--moss-900);
  color: var(--white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 88vh;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 24px;
  max-width: 620px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow { color: var(--gold-400); }
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-credentials {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-credentials div {
  border-left: 2px solid var(--gold-500);
  padding-left: 14px;
}
.hero-credentials .num {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--white);
  display: block;
}
.hero-credentials .label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  min-height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--moss-900) 0%, rgba(53,66,59,0) 18%);
  z-index: 1;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,35,30,0.55), rgba(28,35,30,0) 40%);
}

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.section-tight { padding: 70px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.section-head p { color: var(--ink-600); margin-top: 16px; font-size: 1.02rem; }

.bg-moss { background: var(--moss-900); color: var(--white); }
.bg-moss h2 { color: var(--white); }
.bg-moss .eyebrow { color: var(--gold-400); }
.bg-cream { background: var(--cream-100); }

/* About teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-teaser .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-teaser .frame img { aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.about-teaser .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
}
.stat-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--moss-900);
  color: var(--white);
  padding: 22px 26px;
  border-top-left-radius: var(--radius-lg);
}
.stat-badge .num { font-family: "Cinzel", serif; font-size: 1.8rem; color: var(--gold-400); display: block; }
.stat-badge .label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); }

.about-teaser .copy p { color: var(--ink-600); margin-bottom: 18px; font-size: 1.02rem; }
.about-teaser .copy p:first-of-type { font-size: 1.15rem; color: var(--moss-900); font-weight: 500; }

.credential-list { display: grid; gap: 14px; margin: 28px 0 32px; }
.credential-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-700, var(--ink-600));
}
.credential-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Specialty grid */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.specialty-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.specialty-card .idx {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--gold-500);
  margin-bottom: 18px;
  display: block;
}
.specialty-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.specialty-card p { color: var(--ink-600); font-size: 0.93rem; margin-bottom: 18px; }
.specialty-card .list { display: grid; gap: 8px; }
.specialty-card .list span {
  font-size: 0.82rem;
  color: var(--ink-600);
  padding-left: 16px;
  position: relative;
}
.specialty-card .list span::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.testimonial-card .stars {
  color: var(--gold-500);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card .author {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--moss-900);
}
.testimonial-source {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--ink-400);
}
.testimonial-source a { color: var(--moss-900); text-decoration: underline; }

/* Clinic banner */
.clinic-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.clinic-banner .img { min-height: 380px; background-size: cover; background-position: center; }
.clinic-banner .copy {
  background: var(--moss-900);
  color: var(--white);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.clinic-banner .copy p { color: rgba(255,255,255,0.78); margin: 16px 0 26px; }
.clinic-banner .copy .addr { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 22px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--moss-950), var(--moss-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: 1.9rem; max-width: 480px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-top: 10px; }

/* Footer */
.site-footer {
  background: var(--moss-950);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.footer-grid .brand-name { color: var(--white); }
.footer-grid p, .footer-grid a { font-size: 0.9rem; color: rgba(255,255,255,0.62); }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 720px;
  margin-top: 18px;
  line-height: 1.6;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--moss-900);
  color: var(--white);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin-top: 16px; font-size: 1.05rem; }
.page-hero .crumbs { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.page-hero .crumbs a { color: var(--gold-400); }

/* Sobre page */
.bio-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
}
.bio-photo { position: sticky; top: 110px; align-self: start; }
.bio-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 3/4; object-fit: cover; }
.bio-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.bio-content h2:first-child { margin-top: 0; }
.bio-content p { color: var(--ink-600); margin-bottom: 16px; font-size: 1rem; }
.timeline { display: grid; gap: 22px; margin-top: 10px; }
.timeline li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.timeline .yr { font-family: "Cinzel", serif; color: var(--gold-500); font-weight: 600; }
.timeline .desc { color: var(--ink-600); font-size: 0.95rem; }
.timeline .desc strong { color: var(--moss-900); display: block; margin-bottom: 4px; font-family: "Inter", sans-serif; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.value-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--moss-900);
}

/* Procedure detail pages */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-600); margin-bottom: 16px; font-size: 1.02rem; }
.prose .credential-list { margin: 4px 0 30px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--moss-900);
  margin-top: 14px;
  transition: gap 0.2s ease;
}
.read-more:hover { gap: 13px; color: var(--gold-500); }

.callout {
  background: var(--cream-100);
  border-left: 3px solid var(--moss-900);
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 0 8px 8px 0;
}
.callout h4 { font-size: 0.98rem; color: var(--moss-900); margin-bottom: 6px; font-family: "Cinzel", serif; }
.callout p { font-size: 0.92rem; color: var(--ink-600); margin: 0; }

.mini-table { width: 100%; border-collapse: collapse; margin: 20px 0 26px; font-size: 0.86rem; }
.mini-table th {
  background: var(--moss-900); color: var(--cream-100);
  font-family: "Cinzel", serif; font-weight: 600; text-align: left;
  padding: 10px 12px; font-size: 0.78rem; letter-spacing: 0.02em;
}
.mini-table td { padding: 9px 12px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-600); }
.mini-table tr:nth-child(even) td { background: var(--cream-100); }
.mini-table td:first-child { font-weight: 600; color: var(--moss-900); }

.proc-stats { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 28px; }
.proc-stats div { flex: 1; min-width: 120px; border: 1px solid var(--line); border-radius: 10px; padding: 14px; text-align: center; }
.proc-stats b { display: block; font-family: "Cinzel", serif; color: var(--moss-900); font-size: 0.95rem; margin-bottom: 3px; }
.proc-stats span { font-size: 0.76rem; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.04em; }

/* Especialidades page */
.spec-detail {
  display: grid;
  gap: 20px;
}
.spec-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.spec-row .idx { font-family: "Cinzel", serif; font-size: 1.3rem; color: var(--gold-500); }
.spec-row h3 { font-size: 1.25rem; margin-bottom: 8px; }
.spec-row p { color: var(--ink-600); font-size: 0.97rem; max-width: 640px; }
.spec-category-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin: 60px 0 6px;
}

/* Affiliations panel (onde atendo) */
.affiliations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: var(--moss-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
}
.affiliations h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.affiliations p { color: rgba(255,255,255,0.72); margin-bottom: 20px; }
.affiliations ul { display: grid; gap: 12px; }
.affiliations li {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  padding-left: 18px;
  position: relative;
}
.affiliations li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-400);
}
.affiliations .divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 24px 0;
}

/* CV / grouped list (Sobre page) */
.cv-group { margin-bottom: 44px; }
.cv-group h3 {
  font-size: 1.1rem;
  color: var(--moss-900);
  margin-bottom: 16px;
}
.cv-year-list { display: grid; gap: 16px; }
.cv-year-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cv-year-row .yr {
  font-family: "Cinzel", serif;
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.95rem;
}
.cv-year-row ul { display: grid; gap: 8px; }
.cv-year-row li {
  color: var(--ink-600);
  font-size: 0.92rem;
  padding-left: 16px;
  position: relative;
}
.cv-year-row li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-500);
}
.cv-year-row li strong { color: var(--moss-900); font-weight: 600; }

/* Vídeos / Mídia page */
.video-group-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin: 52px 0 20px;
}
.video-group-label:first-of-type { margin-top: 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.video-card .thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--moss-900); }
.video-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card .thumb .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(28,35,30,0.28);
}
.video-card .thumb .play svg { width: 42px; height: 42px; fill: var(--gold-400); }
.video-card .meta { padding: 13px 15px; }
.video-card .meta h4 {
  font-size: 0.85rem; font-family: "Inter", sans-serif; font-weight: 600;
  color: var(--moss-900); line-height: 1.35; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.video-card .meta span { font-size: 0.72rem; color: var(--ink-400); }

.media-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.media-link-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.media-link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.media-link-card .ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--moss-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.media-link-card strong { display: block; font-size: 0.92rem; color: var(--moss-900); }
.media-link-card span { font-size: 0.78rem; color: var(--ink-400); }

/* Contato page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-method {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-method h4 { font-size: 0.95rem; color: var(--moss-900); margin-bottom: 4px; }
.contact-method p, .contact-method a { color: var(--ink-600); font-size: 0.92rem; }
.contact-method a:hover { color: var(--gold-500); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  border: 0;
  width: 100%;
}

.placeholder-note {
  background: var(--gold-100);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--moss-800);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { height: 420px; order: -1; }
  .hero-copy { margin: 0; max-width: 100%; padding: 56px 24px; }
  .about-teaser, .bio-layout, .contact-layout { grid-template-columns: 1fr; }
  .bio-photo { position: static; max-width: 360px; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .clinic-banner { grid-template-columns: 1fr; }
  .clinic-banner .img { min-height: 260px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--cream-050);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .menu-toggle { display: flex; }
  section { padding: 70px 0; }
  .specialty-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .media-links { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .duo-list { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   Movimento — discreto, no tom Governante.
   A entrada do hero e do botão de WhatsApp é puro CSS (toca no
   load mesmo se o JS falhar). O reveal ao rolar depende do JS,
   mas nesse caso a classe .reveal nunca é adicionada e o
   conteúdo aparece normal. Tudo desligado em reduced-motion.
   ============================================================ */

.js .site-header { transition: box-shadow 0.3s ease, background 0.3s ease; }
.js .site-header.scrolled { box-shadow: 0 10px 30px rgba(28, 35, 30, 0.10); }

/* --- reveal ao rolar (JS adiciona .reveal e depois .in) --- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--rd, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }

/* --- entrada do hero (CSS puro, toca no load) --- */
.js .hero-copy > * {
  opacity: 0;
  animation: bersouRise 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
.js .hero-copy > *:nth-child(1) { animation-delay: 0.14s; }
.js .hero-copy > *:nth-child(2) { animation-delay: 0.26s; }
.js .hero-copy > *:nth-child(3) { animation-delay: 0.38s; }
.js .hero-copy > *:nth-child(4) { animation-delay: 0.50s; }
.js .hero-copy > *:nth-child(5) { animation-delay: 0.62s; }
.js .hero-media { overflow: hidden; }
.js .hero-media img {
  height: 116%;
  will-change: transform;
  clip-path: inset(0 0 100% 0);
  animation: bersouCurtain 1.5s cubic-bezier(0.16, 0.84, 0.28, 1) 0.15s both;
}
@keyframes bersouCurtain { to { clip-path: inset(0 0 0 0); } }

/* entrada dos títulos das páginas internas (também CSS puro) */
.js .page-hero .container > * {
  opacity: 0;
  animation: bersouRise 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
.js .page-hero .container > *:nth-child(1) { animation-delay: 0.12s; }
.js .page-hero .container > *:nth-child(2) { animation-delay: 0.24s; }
.js .page-hero .container > *:nth-child(3) { animation-delay: 0.36s; }
.js .page-hero .container > *:nth-child(4) { animation-delay: 0.48s; }

@keyframes bersouRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* filete dourado que se desenha sob o H1 do hero */
.js .hero-copy h1 { position: relative; }
.js .hero-copy h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 2px;
  width: 46px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  animation: bersouWipe 0.7s cubic-bezier(0.2, 0.6, 0.2, 1) 0.85s both;
}
@keyframes bersouWipe { to { transform: scaleX(1); } }

/* --- botão flutuante do WhatsApp --- */
.js .wa-float { animation: bersouFab 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s both; }
@keyframes bersouFab {
  from { opacity: 0; transform: scale(0.6) translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.js .wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: bersouPulse 3.4s ease-out 2s infinite;
}
@keyframes bersouPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---- Fotos: revelação em cortina + assentamento de escala ----
   O JS marca com .has-photo os blocos .reveal que contêm <img>. */
.js .reveal.has-photo { overflow: hidden; transform: none; }
.js .reveal.has-photo img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.14);
  transition: clip-path 1s cubic-bezier(0.16, 0.84, 0.28, 1),
              transform 1.25s cubic-bezier(0.16, 0.84, 0.28, 1),
              filter 1.25s ease;
  transition-delay: var(--rd, 0ms);
}
.js .reveal.has-photo.in img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* banner da clínica (div com background-image) */
.js .clinic-banner .img.reveal {
  opacity: 1;
  transform: none;
  overflow: hidden;
}
.js .clinic-banner .img.reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.16);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.16, 0.84, 0.28, 1),
              transform 1.3s cubic-bezier(0.16, 0.84, 0.28, 1);
}
.js .clinic-banner .img.reveal.in::before {
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}
.js .clinic-banner .img { position: relative; }

/* leve aproximação da foto ao passar o mouse (dentro de moldura) */
.js .about-teaser .frame,
.js .bio-photo,
.js .video-card .thumb { overflow: hidden; }
.js .about-teaser .frame img,
.js .bio-photo img {
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.6s ease;
}
.js .about-teaser .frame:hover img,
.js .bio-photo:hover img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.has-photo img,
  .js .hero-copy > *,
  .js .hero-media img,
  .js .clinic-banner .img.reveal::before,
  .js .page-hero .container > *,
  .js .wa-float {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
  .js .hero-media img { height: 100%; }
  .js .hero-copy h1::after { animation: none; transform: scaleX(1); }
  .js .wa-float::after { display: none; }
}

/* ---- Manual do paciente (download do e-book por procedimento) ---- */
.manual-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--moss-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  margin: 40px 0;
}
.manual-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(214, 203, 173, 0.14);
  border: 1px solid rgba(214, 203, 173, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.manual-card .ic svg { width: 24px; height: 24px; fill: var(--gold-400); }
.manual-card .txt { min-width: 0; }
.manual-card .txt .label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.manual-card .txt h3 {
  font-family: "Cinzel", serif;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.manual-card .txt p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin: 0;
}
.manual-card .btn-gold { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 640px) {
  .manual-card {
    grid-template-columns: auto 1fr;
    gap: 16px 18px;
    padding: 24px;
  }
  .manual-card .btn-gold { grid-column: 1 / -1; justify-content: center; }
}

.manual-card__actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.manual-card__actions .btn { white-space: nowrap; }
.manual-card__actions .btn-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.manual-card__actions .btn-link:hover { color: #fff; }
@media (max-width: 640px) {
  .manual-card__actions { grid-column: 1 / -1; width: 100%; }
  .manual-card__actions .btn-gold { justify-content: center; }
}

/* ---- Página do manual (leitura no site) ---- */
.manual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.manual-meta a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.manual-meta a:hover { color: #fff; }
.manual-meta span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }

.manual-intro {
  font-size: 1.08rem;
  color: var(--moss-900);
  font-weight: 500;
  margin-bottom: 8px;
}

/* duas colunas de itens rotulados (cuidados, tecnologias etc.) */
.duo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 44px;
  margin: 22px 0 30px;
}
.duo-list h3 {
  font-size: 0.98rem;
  color: var(--moss-900);
  margin-bottom: 14px;
}
.duo-item { margin-bottom: 15px; }
.duo-item h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--moss-900);
  margin-bottom: 3px;
}
.duo-item p { font-size: 0.88rem; color: var(--ink-600); margin: 0; }

@media (max-width: 640px) {
  .duo-list { grid-template-columns: 1fr; gap: 0; }
}

.step-list { display: grid; gap: 16px; margin: 20px 0 28px; }
.step-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: baseline;
}
.step-list .n {
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: var(--gold-500);
  font-size: 0.92rem;
}
.step-list strong { color: var(--moss-900); display: block; margin-bottom: 2px; }
.step-list p { color: var(--ink-600); font-size: 0.94rem; margin: 0; }

.closing-note {
  font-style: italic;
  color: var(--ink-600);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 36px;
}
