:root {
  --bg: #f4ede2;
  --bg-deep: #ebe0d0;
  --paper: #faf6ef;
  --ink: #2a1f17;
  --ink-soft: #4a3a2c;
  --ink-mute: #7b6958;
  --leather: #6b4423;
  --leather-dark: #3d2817;
  --gold: #b8945f;
  --gold-light: #d4b896;
  --line: rgba(42, 31, 23, 0.15);
  --line-strong: rgba(42, 31, 23, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184,148,95,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107,68,35,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(12px);
  background: rgba(244, 237, 226, 0.7);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 14px 0; }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 400;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--leather-dark); color: var(--paper);
  padding: 10px 22px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 140px 0 80px;
  position: relative; display: flex; align-items: center;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.hero-text .eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 16px; color: var(--gold); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-text .eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--gold); }
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px); line-height: 1.02;
  font-weight: 400; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-text h1 em { font-style: italic; font-weight: 300; color: var(--leather); }
.hero-text .lede {
  font-size: 18px; line-height: 1.7; color: var(--ink-soft);
  max-width: 480px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
.btn-primary {
  background: var(--leather-dark); color: var(--paper);
  padding: 16px 32px; text-decoration: none;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; border-radius: 2px; transition: all 0.4s;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--leather-dark);
}
.btn-primary:hover { background: transparent; color: var(--leather-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 16px 32px; text-decoration: none;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; border-radius: 2px; border: 1px solid var(--line-strong); transition: all 0.4s;
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hero-image { position: relative; opacity: 0; animation: fadeIn 1.2s ease 0.6s forwards; }
.hero-image-frame {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 2px; box-shadow: 0 30px 80px rgba(61, 40, 23, 0.25);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image::before {
  content: ''; position: absolute;
  top: 32px; left: 32px; right: -32px; bottom: -32px;
  border: 1px solid var(--gold); z-index: -1;
}
.hero-credentials {
  position: absolute; bottom: -32px; left: -32px;
  background: var(--paper); padding: 24px 28px;
  box-shadow: 0 20px 50px rgba(61, 40, 23, 0.15);
  border-radius: 2px; z-index: 3;
}
.hero-credentials .crn-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.hero-credentials .crn-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--leather-dark); font-weight: 500; }
.crn-verify {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; font-weight: 500; transition: color 0.3s;
  border-top: 1px solid var(--line); padding-top: 10px; width: 100%;
}
.crn-verify svg { width: 13px; height: 13px; stroke: currentColor; flex-shrink: 0; }
.crn-verify:hover { color: var(--leather); }
.footer-verify {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(244, 237, 226, 0.45); text-decoration: none;
  font-size: 12px; transition: color 0.3s;
}
.footer-verify svg { flex-shrink: 0; }
.footer-verify:hover { color: var(--gold-light); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== SECTIONS ===== */
section { padding: 120px 0; position: relative; }
.section-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 15px; color: var(--gold); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: '—'; color: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05;
  font-weight: 400; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 24px; max-width: 720px;
}
.section-title em { font-style: italic; color: var(--leather); }

/* ===== SOBRE ===== */
.sobre { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px; align-items: start; }
.sobre-aside { position: sticky; top: 120px; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 180px; line-height: 1; color: var(--gold-light); margin-bottom: -40px; font-style: italic; }
.sobre-quote { font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 1.4; font-style: italic; color: var(--ink-soft); font-weight: 300; margin-bottom: 32px; }
.sobre-signature { display: flex; align-items: center; gap: 16px; }
.sobre-signature-line { width: 40px; height: 1px; background: var(--gold); }
.sobre-signature-text { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); }
.sobre-content p { font-size: 17px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 24px; }
.sobre-content p:first-of-type::first-letter { font-family: 'Cormorant Garamond', serif; font-size: 72px; float: left; line-height: 0.9; margin: 6px 12px 0 0; color: var(--leather); font-weight: 500; }
.relato-pessoal {
  display: flex; gap: 20px; background: var(--bg-deep);
  border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
  padding: 28px 28px 28px 24px; margin: 32px 0; position: relative;
}
.relato-icon { flex-shrink: 0; width: 36px; height: 36px; color: var(--gold); margin-top: 2px; }
.relato-icon svg { width: 100%; height: 100%; }
.relato-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.relato-texto { font-size: 15px !important; line-height: 1.75 !important; color: var(--ink-soft) !important; margin-bottom: 20px !important; }
.relato-texto::first-letter { all: unset; }
.relato-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--leather); font-weight: 400; line-height: 1.4; margin: 0 0 12px 0; padding: 0; border: none; }
.relato-author { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.credentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 48px; border: 1px solid var(--line); }
.credential-item { background: var(--paper); padding: 28px; }
.credential-item .number { font-family: 'Cormorant Garamond', serif; font-size: 44px; color: var(--leather); font-weight: 500; line-height: 1; margin-bottom: 8px; }
.credential-item .label { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.05em; line-height: 1.4; }

/* ===== ESPECIALIDADES ===== */
.especialidades { background: var(--bg); }
.especialidades-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 80px; }
.especialidades-intro { font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 460px; }
.esp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.esp-card {
  background: var(--paper); padding: 48px 40px;
  border: 1px solid var(--line); border-radius: 2px;
  position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden;
}
.esp-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.6s ease; }
.esp-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(61, 40, 23, 0.12); }
.esp-card:hover::before { width: 100%; }
.esp-number { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 32px; display: block; }
.esp-icon { width: 56px; height: 56px; margin-bottom: 28px; color: var(--leather); }
.esp-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.esp-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; color: var(--ink); margin-bottom: 16px; line-height: 1.15; }
.esp-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.esp-card ul { list-style: none; padding-top: 20px; border-top: 1px solid var(--line); }
.esp-card ul li { font-size: 13px; color: var(--ink-mute); padding: 6px 0 6px 16px; position: relative; }
.esp-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ===== CHAT WIDGET ===== */
.chat-bubble { position: fixed; bottom: 100px; right: 28px; z-index: 98; }
.chat-trigger { width: 60px; height: 60px; background: var(--leather-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 24px rgba(61,40,23,0.35); border: none; transition: all 0.3s; position: relative; }
.chat-trigger:hover { transform: scale(1.08); background: var(--leather); }
.chat-trigger svg { width: 26px; height: 26px; stroke: var(--paper); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chat-trigger .chat-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; font-size: 10px; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; animation: pulse-badge 2s infinite; }
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.chat-window { position: fixed; bottom: 170px; right: 28px; width: 380px; max-height: 560px; background: var(--paper); border-radius: 12px; box-shadow: 0 30px 80px rgba(61,40,23,0.25); display: flex; flex-direction: column; z-index: 99; border: 1px solid var(--line); overflow: hidden; transform: scale(0.92) translateY(16px); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); transform-origin: bottom right; }
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header { background: var(--leather-dark); padding: 16px 20px; display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.chat-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: "Cormorant Garamond", serif; font-size: 20px; color: white; font-style: italic; font-weight: 600; flex-shrink: 0; }
.chat-header-info { flex: 1; }
.chat-header-name { font-size: 14px; font-weight: 600; color: var(--paper); margin-bottom: 2px; }
.chat-header-status { font-size: 11px; color: rgba(244,237,226,0.7); display: flex; align-items: center; gap: 5px; }
.chat-header-status::before { content: ""; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; }
.chat-close { background: none; border: none; cursor: pointer; color: rgba(244,237,226,0.7); padding: 4px; display: flex; align-items: center; transition: color 0.2s; }
.chat-close:hover { color: var(--paper); }
.chat-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px 16px; display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }
.msg { display: flex; gap: 8px; align-items: flex-end; max-width: 88%; animation: msgIn 0.3s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.msg.user { margin-left: auto; flex-direction: row-reverse; }
.msg-bubble { padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.5; color: var(--ink); }
.msg.bot .msg-bubble { background: var(--bg); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg.user .msg-bubble { background: var(--leather-dark); color: var(--paper); border-bottom-right-radius: 4px; }
.msg-bubble a { color: var(--gold); text-decoration: underline; }
.chat-typing { display: flex; gap: 5px; padding: 12px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; border-bottom-left-radius: 4px; width: fit-content; }
.chat-typing span { width: 7px; height: 7px; background: var(--ink-mute); border-radius: 50%; animation: typing 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; }
.quick-reply { background: transparent; border: 1px solid var(--leather); color: var(--leather); padding: 6px 12px; border-radius: 20px; font-size: 12px; cursor: pointer; transition: all 0.2s; font-family: inherit; white-space: nowrap; }
.quick-reply:hover { background: var(--leather); color: var(--paper); }
.chat-input-area { padding: 12px 16px; border-top: 1px solid var(--line); display: flex; gap: 8px; align-items: flex-end; flex-shrink: 0; background: var(--paper); }
.chat-input { flex: 1; border: 1px solid var(--line-strong); border-radius: 20px; padding: 10px 16px; font-size: 14px; font-family: inherit; color: var(--ink); background: var(--bg); resize: none; outline: none; max-height: 100px; overflow-y: auto; transition: border-color 0.2s; line-height: 1.4; }
.chat-input:focus { border-color: var(--leather); }
.chat-send { width: 38px; height: 38px; background: var(--leather-dark); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.chat-send:hover { background: var(--leather); }
.chat-send svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }
.chat-footer-note { text-align: center; font-size: 10px; color: var(--ink-mute); padding: 6px 16px 10px; flex-shrink: 0; }

/* ===== AGENDAMENTO ===== */
.agendamento { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.agendamento-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.agendamento-intro { font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 460px; margin-bottom: 48px; }
.agendamento-features { display: flex; flex-direction: column; gap: 24px; }
.agend-feature { display: flex; gap: 18px; align-items: flex-start; }
.agend-feature-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--bg-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--leather); }
.agend-feature-icon svg { width: 20px; height: 20px; }
.agend-feature strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--ink); font-weight: 500; margin-bottom: 4px; }
.agend-feature span { display: block; font-size: 14px; color: var(--ink-mute); line-height: 1.5; }
.widget-frame { background: var(--bg); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: 0 30px 80px rgba(61, 40, 23, 0.12); position: relative; }
.widget-frame::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--leather)); z-index: 1; }
.widget-header { display: flex; align-items: baseline; justify-content: space-between; padding: 18px 24px; background: var(--paper); border-bottom: 1px solid var(--line); }
.widget-header-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); }
.widget-header-brand { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--leather); font-weight: 500; }
.widget-body { padding: 8px; min-height: 480px; background: white; position: relative; }
.widget-body iframe { max-width: 100% !important; width: 100% !important; border: none !important; position: relative; z-index: 2; }
.widget-fallback { position: absolute; inset: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 32px; color: var(--ink-soft); background: white; z-index: 1; }
.widget-fallback svg { width: 64px; height: 64px; color: var(--gold); margin-bottom: 24px; }
.widget-fallback h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--ink); font-weight: 500; margin-bottom: 12px; }
.widget-fallback p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; max-width: 320px; margin-bottom: 28px; }
.fallback-btn { background: var(--leather-dark); color: var(--paper); padding: 14px 28px; text-decoration: none; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; border-radius: 2px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; }
.fallback-btn:hover { background: var(--gold); transform: translateY(-2px); }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: var(--leather-dark); color: var(--paper); position: relative; overflow: hidden; }
.depoimentos::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(184,148,95,0.15) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(184,148,95,0.08) 0%, transparent 50%); pointer-events: none; }
.depoimentos .section-label { color: var(--gold-light); }
.depoimentos .section-title { color: var(--paper); margin-bottom: 64px; }
.depoimentos .section-title em { color: var(--gold-light); }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.dep-card { background: rgba(250, 246, 239, 0.04); backdrop-filter: blur(10px); border: 1px solid rgba(212, 184, 150, 0.15); padding: 40px 36px; border-radius: 2px; transition: all 0.5s; position: relative; }
.dep-card:hover { background: rgba(250, 246, 239, 0.08); border-color: rgba(212, 184, 150, 0.4); transform: translateY(-4px); }
.dep-stars { color: var(--gold-light); font-size: 14px; letter-spacing: 4px; margin-bottom: 24px; }
.dep-quote { font-family: 'Cormorant Garamond', serif; font-size: 21px; line-height: 1.5; font-style: italic; color: var(--paper); margin-bottom: 32px; font-weight: 300; }
.dep-author { border-top: 1px solid rgba(212, 184, 150, 0.2); padding-top: 20px; }
.dep-name { font-size: 14px; color: var(--paper); margin-bottom: 4px; letter-spacing: 0.05em; }
.dep-context { font-size: 12px; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }
.dep-more { text-align: center; margin-top: 48px; }
.dep-more-link { display: inline-flex; align-items: center; gap: 10px; background: rgba(250,246,239,0.08); border: 1px solid rgba(212,184,150,0.25); color: var(--paper); text-decoration: none; padding: 14px 28px; border-radius: 2px; font-size: 13px; letter-spacing: 0.08em; transition: all 0.3s; }
.dep-more-link:hover { background: rgba(250,246,239,0.14); border-color: rgba(212,184,150,0.5); transform: translateY(-2px); }

/* ===== CONTATO ===== */
.contato { background: var(--bg-deep); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contato-text .section-title { margin-bottom: 32px; }
.contato-text p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 40px; max-width: 460px; }
.contato-info { display: flex; flex-direction: column; gap: 24px; }
.contato-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contato-item:last-child { border-bottom: none; }
.contato-icon { width: 44px; height: 44px; background: var(--paper); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--leather); flex-shrink: 0; }
.contato-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contato-label { font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 4px; }
.contato-value { font-size: 16px; color: var(--ink); text-decoration: none; font-weight: 500; }
.contato-value:hover { color: var(--leather); }
.cta-card { background: var(--paper); padding: 56px 48px; border-radius: 2px; box-shadow: 0 30px 80px rgba(61, 40, 23, 0.12); position: relative; border: 1px solid var(--line); }
.cta-card::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--leather)); }
.cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--ink); margin-bottom: 16px; line-height: 1.2; }
.cta-card h3 em { color: var(--leather); font-style: italic; }
.cta-card p { color: var(--ink-soft); margin-bottom: 32px; font-size: 15px; line-height: 1.6; }
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.cta-form input, .cta-form textarea { border: 1px solid var(--line-strong); background: transparent; padding: 14px 18px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink); border-radius: 2px; transition: border-color 0.3s; width: 100%; }
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: var(--leather); }
.cta-form textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.cta-form button { background: var(--leather-dark); color: var(--paper); border: none; padding: 16px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; cursor: pointer; border-radius: 2px; transition: background 0.3s; font-family: inherit; margin-top: 8px; }
.cta-form button:hover { background: var(--gold); }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: var(--bg); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin-bottom: 16px; color: var(--bg); }
.footer-logo span { color: var(--gold-light); font-style: italic; }
.footer-tagline { font-size: 14px; color: rgba(244, 237, 226, 0.6); line-height: 1.6; max-width: 320px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(244, 237, 226, 0.7); text-decoration: none; font-size: 14px; padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(244, 237, 226, 0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(244, 237, 226, 0.4); }

/* WhatsApp floating */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); z-index: 99; transition: all 0.3s; color: white; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px; background: var(--paper);
  border-bottom: 1px solid var(--line); position: relative;
}
.page-hero-inner { max-width: 820px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 32px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--leather); }
.breadcrumb span { color: var(--line-strong); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.05;
  font-weight: 400; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--leather); }
.page-hero .lede { font-size: 18px; line-height: 1.7; color: var(--ink-soft); max-width: 620px; margin-bottom: 40px; }

/* ===== INNER PAGE CONTENT ===== */
.page-content { padding: 80px 0; }
.page-grid { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.page-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 400;
  color: var(--ink); margin: 48px 0 20px; line-height: 1.2;
}
.page-article h2:first-child { margin-top: 0; }
.page-article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 500;
  color: var(--leather); margin: 36px 0 16px; line-height: 1.3;
}
.page-article p { font-size: 17px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 24px; }
.page-article ul, .page-article ol { margin: 0 0 24px 0; padding-left: 0; list-style: none; }
.page-article ul li, .page-article ol li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); padding: 6px 0 6px 20px; position: relative; }
.page-article ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.page-article ol { counter-reset: ol-counter; }
.page-article ol li { counter-increment: ol-counter; }
.page-article ol li::before { content: counter(ol-counter) '.'; position: absolute; left: 0; color: var(--gold); font-weight: 600; font-family: 'Cormorant Garamond', serif; }
.page-article blockquote { border-left: 3px solid var(--gold); padding: 20px 24px; margin: 32px 0; background: var(--bg-deep); border-radius: 0 4px 4px 0; }
.page-article blockquote p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--leather); margin: 0; line-height: 1.5; }

/* Sidebar */
.page-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--paper); border: 1px solid var(--line); border-radius: 2px; padding: 32px; margin-bottom: 24px; position: relative; }
.sidebar-card::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--leather)); }
.sidebar-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ink); margin-bottom: 12px; font-weight: 500; }
.sidebar-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; margin-bottom: 20px; }
.sidebar-card .btn-primary { width: 100%; justify-content: center; font-size: 12px; }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--line); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: 12px 0; font-size: 14px; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.sidebar-links a::before { content: '→'; color: var(--gold); font-size: 12px; }
.sidebar-links a:hover { color: var(--leather); }

/* ===== BLOG ===== */
.blog-listing { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.blog-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 2px; padding: 40px; position: relative;
  transition: all 0.4s; overflow: hidden;
}
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.5s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(61, 40, 23, 0.1); }
.blog-card:hover::before { width: 100%; }
.blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.blog-date { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.blog-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding: 3px 10px; border: 1px solid var(--gold); border-radius: 20px; }
.blog-card h2, .blog-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--ink); margin-bottom: 16px; line-height: 1.25; }
.blog-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 28px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leather); text-decoration: none; font-weight: 500; transition: gap 0.2s; }
.blog-read-more:hover { gap: 12px; }

/* Blog article */
.article-hero { padding: 140px 0 60px; background: var(--paper); border-bottom: 1px solid var(--line); }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.article-meta time { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.article-meta .tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding: 3px 10px; border: 1px solid var(--gold); border-radius: 20px; }
.article-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5.5vw, 64px); line-height: 1.08; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 24px; max-width: 880px; }
.article-hero h1 em { font-style: italic; color: var(--leather); }
.article-hero .lede { font-size: 18px; line-height: 1.7; color: var(--ink-soft); max-width: 680px; }
.article-author { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.article-author-avatar { width: 48px; height: 48px; background: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--leather-dark); font-style: italic; font-weight: 600; flex-shrink: 0; }
.article-author-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.article-author-cred { font-size: 12px; color: var(--ink-mute); }
.article-body { padding: 80px 0; }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start; }
.article-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3.5vw, 38px); font-weight: 400; color: var(--ink); margin: 48px 0 20px; line-height: 1.2; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; color: var(--leather); margin: 36px 0 16px; line-height: 1.3; }
.article-content p { font-size: 17px; line-height: 1.9; color: var(--ink-soft); margin-bottom: 24px; }
.article-content ul, .article-content ol { margin: 0 0 24px 0; padding-left: 0; list-style: none; }
.article-content ul li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); padding: 6px 0 6px 20px; position: relative; }
.article-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.article-content blockquote { border-left: 3px solid var(--gold); padding: 20px 24px; margin: 32px 0; background: var(--bg-deep); border-radius: 0 4px 4px 0; }
.article-content blockquote p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--leather); margin: 0; line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-grid, .article-grid { grid-template-columns: 1fr; }
  .page-sidebar, .article-sidebar { position: static; }
}
@media (max-width: 968px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; color: var(--ink); }
  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-image { max-width: 420px; margin: 0 auto; }
  .hero-image::before { display: none; }
  .hero-credentials { left: 16px; bottom: -20px; }
  section { padding: 80px 0; }
  .sobre-grid, .contato-grid, .especialidades-header, .agendamento-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-aside { position: static; }
  .esp-grid, .dep-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 40px 28px; }
  .nav-cta { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; width: 100%; }
  .quote-mark { font-size: 120px; }
  .sobre-quote { font-size: 22px; }
  .chat-window { width: calc(100vw - 24px); right: 12px; bottom: 160px; }
  .chat-bubble { right: 12px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 96px 0 40px; }
  .hero-image { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-text .lede { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .hero-text h1 { margin-bottom: 20px; }
  .sobre { padding: 56px 0; }
  .sobre-content > p { display: none; }
  .relato-pessoal { display: none; }
  .credentials-grid { margin-top: 0; }
  .especialidades { padding: 56px 0; }
  .especialidades-intro { display: none; }
  .esp-card ul { display: none; }
  .esp-card p { font-size: 14px; }
  .agendamento { padding: 56px 0; }
  .agendamento-intro { display: none; }
  .agendamento-features { display: none; }
  .agendamento-text .section-label { display: none; }
  .agendamento-text h2 { font-size: clamp(26px, 7vw, 36px); margin-bottom: 20px; }
  #depoimentos { display: none; }
  #contato { display: none; }
  .mobile-wa-banner { display: flex !important; }
  footer { padding: 32px 0; }
  .footer-grid { display: none; }
  .footer-bottom { padding-top: 0; border-top: none; }
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .article-hero { padding: 100px 0 48px; }
}
