/*
  pages.css — estilos das páginas internas (sobre/procedimentos/metodo/contato)
  Segue o design system do styles.css sem sobrescrever.
  Criado por E.L.I.A.J.A.H. 2026-04-11 (Fase 1 multi-página).
*/
@font-face {
  font-family: 'IvyOra Text';
  src: url('../assets/fonts/IvyOraText-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IvyOra Text';
  src: url('../assets/fonts/IvyOraText-LightItalic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'IvyOra Text';
  src: url('../assets/fonts/IvyOraText-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IvyOra Text';
  src: url('../assets/fonts/IvyOraText-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IvyOra Text';
  src: url('../assets/fonts/IvyOraText-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IvyOra Text';
  src: url('../assets/fonts/IvyOraText-RegularItalic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'IvyOra Text';
  src: url('../assets/fonts/IvyOraText-MediumItalic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}

.page {
  background: #fdfbf7;
  color: #2a1a14;
  font-family: 'Libre Franklin', system-ui, sans-serif;
}

.nav-page {
  background: rgba(74, 1, 24, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(172, 145, 100, 0.2);
}

/* Link ativo em gold */
.nav-page .nav-links a.active {
  color: #AC9164;
  font-weight: 500;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── HERO DE PÁGINA ── */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #fdfbf7 0%, #f5efe3 100%);
}

.page-eyebrow {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #AC9164;
  margin: 0 0 20px;
}

.page-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  color: #2a1a14;
  margin: 0 0 24px;
}

.page-lede {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #4a3a34;
}

/* ── BIO (sobre.html) ── */
.page-bio {
  padding: 100px 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.bio-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(42, 26, 20, 0.12);
}

.bio-photo-caption {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-style: italic;
  color: #AC9164;
  text-align: center;
  margin-top: 16px;
}

.bio-paragraph {
  font-size: 17px;
  line-height: 1.85;
  color: #3a2a24;
  margin: 0 0 24px;
}

.bio-confirm {
  background: #fff5ce;
  color: #876b28;
  font-size: 0.85em;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 500;
}

/* ── CREDENCIAIS ── */
.page-credenciais {
  padding: 80px 0 120px;
  background: #f5efe3;
}

.section-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: #600222;
  margin: 0 0 40px;
}

.credenciais-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0;
}

.credenciais-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(172, 145, 100, 0.3);
  font-size: 16px;
  gap: 24px;
}

.credencial-label {
  font-weight: 600;
  color: #600222;
}

/* ── TREATMENTS GRID (procedimentos.html) ── */
.page-treatments {
  padding: 80px 0 120px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.treatment-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(42, 26, 20, 0.06);
  border: 1px solid rgba(172, 145, 100, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(42, 26, 20, 0.12);
}

.tc-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: #600222;
  margin: 0 0 16px;
}

.tc-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4a3a34;
  margin: 0;
}

/* ── PILLARS (metodo.html) ── */
.page-pillars {
  padding: 100px 0;
  background: #f5efe3;
}

.page-pillars .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.page-pillars .container > .section-title,
.page-pillars .container > .page-lede {
  grid-column: 1 / -1;
}

.pillar-card {
  background: #fdfbf7;
  padding: 48px 36px;
  border-radius: 4px;
  border-top: 3px solid #AC9164;
}

.pillar-num {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  color: #AC9164;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.pillar-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #600222;
  margin: 0 0 20px;
}

.pillar-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3a34;
  margin: 0;
}

.page-philosophy {
  padding: 120px 0;
  text-align: center;
}

.philosophy-quote p {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.3;
  color: #600222;
  margin: 0 0 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-quote cite {
  font-family: 'Libre Franklin', sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AC9164;
}

/* ── CONTATO GRID (contato.html) ── */
.page-contato-grid {
  padding: 80px 0 120px;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contato-lede {
  font-size: 16px;
  line-height: 1.7;
  color: #4a3a34;
  margin: 0 0 28px;
}

.contato-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(172, 145, 100, 0.3);
}

.contato-label {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AC9164;
  margin: 0 0 8px;
}

.contato-note {
  font-size: 13px;
  color: #876b28;
  margin-top: 16px;
}

.contato-form-wrap {
  background: #f5efe3;
  padding: 48px 40px;
  border-radius: 4px;
}

.form-lede {
  font-size: 14px;
  color: #4a3a34;
  margin: 0 0 24px;
}

.form-field {
  display: block;
  margin-bottom: 20px;
}

.form-field span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #600222;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(172, 145, 100, 0.4);
  border-radius: 2px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: #2a1a14;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #600222;
}

.form-note {
  font-size: 12px;
  color: #876b28;
  margin-top: 12px;
}

/* ── CTA BLOCK ── */
.page-cta {
  padding: 100px 0;
  text-align: center;
  background: #fdfbf7;
  border-top: 1px solid rgba(172, 145, 100, 0.2);
}

.cta-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  color: #600222;
  margin: 0 0 16px;
}

.cta-sub {
  font-size: 16px;
  color: #4a3a34;
  max-width: 540px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  border: 1px solid #600222;
  background: #600222;
  color: #fdfbf7;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: transparent;
  color: #60222C;
  border-color: #60222C;
  box-shadow: inset 0 0 0 2px #60222C;
}

.btn-primary {
  background: #600222;
  color: #fdfbf7;
}

.btn-wa {
  background: linear-gradient(135deg, #600222 0%, #800a2a 100%);
}

.page-note {
  margin-top: 64px;
  padding: 20px 24px;
  background: #fff5ce;
  border-left: 3px solid #AC9164;
  font-size: 13px;
  color: #876b28;
  line-height: 1.6;
}

/* LANG SWITCHER (páginas internas — nav bordeaux) */
.lang-switcher { display: flex; align-items: center; gap: 2px; margin-right: 4px; }
.lang-btn { background: none; border: none; color: rgba(242,240,235,0.55); font-family: 'Libre Franklin',sans-serif; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; padding: 4px 5px; transition: color 0.2s; line-height: 1; }
.lang-btn:hover, .lang-btn.active { color: #AC9164; }
.lang-sep { color: rgba(172,145,100,0.3); font-size: 0.5rem; pointer-events: none; }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.25s, box-shadow 0.25s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ══ PAGAMENTOS ══ */
.page-payments {
  padding: 80px 0;
  background: #140008;
}
.page-payments .section-eyebrow {
  color: #AC9164;
}
.page-payments .section-title {
  color: #fdfbf7;
}
.page-payments .page-lede {
  color: rgba(253,251,247,0.65);
  font-size: 0.95rem;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.payment-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(172,145,100,0.2);
  border-radius: 4px;
  padding: 32px 20px 28px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.payment-card:hover {
  border-color: rgba(172,145,100,0.5);
  background: rgba(172,145,100,0.06);
}
.payment-card-link {
  padding: 0;
}
.payment-inner-link {
  display: block;
  padding: 32px 20px 28px;
  text-decoration: none;
  color: inherit;
}
.payment-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.payment-name {
  font-family: 'IvyOra Text', 'Playfair Display', serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: #fdfbf7;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}
.payment-tag {
  display: block;
  margin-top: 8px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #AC9164;
}
.payment-sub {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.78rem;
  color: rgba(253,251,247,0.45);
  margin: 6px 0 0;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-hero { padding: 140px 0 60px; }
  .bio-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-pillars .container { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .credenciais-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .lang-switcher { margin-right: 0; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .page-hero { padding: 96px 0 36px; }
  .page-lede { font-size: 15px; padding: 0 4px; }
  .section-title { font-size: 28px; margin-bottom: 28px; }
  .page-bio { padding: 52px 0; }
  .page-pillars { padding: 52px 0; }
  .pillar-card { padding: 36px 24px; }
  .page-philosophy { padding: 52px 0; }
  .philosophy-quote p { padding: 0 8px; }
  .page-cta { padding: 56px 0; }
  .page-cta .btn,
  .page-cta .btn-primary { display: block; width: calc(100% - 32px); margin: 0 auto 12px; text-align: center; }
  .cta-title { font-size: clamp(26px, 7vw, 40px); padding: 0 8px; }
  .contato-grid { gap: 32px; }
  .contato-form-wrap { padding: 32px 20px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; } /* evita zoom automático no iOS */
  .page-note { margin-top: 40px; }
  .page-contato-grid { padding: 52px 0 80px; }
  .page-treatments { padding: 52px 0 80px; }
}
@media (max-width: 480px) {
  .payment-grid { grid-template-columns: 1fr; max-width: 320px; }
  .page-hero { padding: 80px 0 28px; }
  .page-cta { padding: 48px 0; }
  .pillar-title { font-size: 26px; }
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — SCROLL ANIMATIONS
═══════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--anim-delay, 0s);
  will-change: opacity, transform;
}
[data-animate="fade-left"]  { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px);  }
[data-animate="fade-scale"] { transform: scale(0.96) translateY(12px); }
[data-animate].in-view { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   DRA. STEFANNIA — HERO SPLIT
   Hero full-viewport sem corte de foto
═══════════════════════════════════════ */
.dra-hero-split {
  min-height: 100svh;
  min-height: max(680px, 100svh);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: clip;
}

/* Painel esquerdo: texto sobre escuro */
.dra-hero-text {
  display: flex;
  align-items: center;
  background: #4a0118;
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) clamp(2.5rem, 5vw, 4.5rem) clamp(5rem, 10vw, 7rem);
}
.dra-hero-text-inner {
  position: relative;
  z-index: 2;
  max-width: 460px;
}
.dra-hero-eyebrow {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #AC9164;
  margin-bottom: 1.25rem;
}
.dra-hero-divider {
  width: 48px;
  height: 1px;
  background: #AC9164;
  margin-bottom: 1.75rem;
  opacity: 0.6;
}
.dra-hero-headline {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  color: #E2CFBF;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.dra-hero-headline em { font-style: italic; }
.dra-hero-ornament { margin: 0 0 1.75rem; }
.dra-hero-ornament svg { width: 160px; height: 20px; }
.dra-hero-body {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 0.95rem);
  font-weight: 300;
  color: rgba(226, 207, 191, 0.78);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 380px;
}
.dra-hero-sub {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: rgba(172, 145, 100, 0.65);
  margin-top: 1.25rem;
  text-transform: uppercase;
}
.dra-hero-cta {
  display: inline-block;
  background: transparent;
  color: #E2CFBF;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border: 1px solid rgba(226, 207, 191, 0.4);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.dra-hero-cta:hover {
  background: #AC9164;
  color: #4a0118;
  border-color: #AC9164;
}

/* Painel direito: foto full-height */
.dra-hero-photo {
  position: relative;
  overflow: hidden;
}
.dra-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.dra-hero-photo-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(74,1,24,0.45) 0%, transparent 30%),
    linear-gradient(to top, rgba(10,0,5,0.3) 0%, transparent 22%);
  pointer-events: none;
}
.dra-hero-photo-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(172, 145, 100, 0.65);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — SEÇÃO DE LIVROS
═══════════════════════════════════════ */
.dra-books-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #f5efe3;
  position: relative;
}
.dra-books-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(172,145,100,0.45), transparent);
}
.dra-books-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(172,145,100,0.45), transparent);
}
.dra-books-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.dra-books-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
.dra-books-stack {
  position: relative;
  width: 280px;
  height: 390px;
}
.dra-book-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(172,145,100,0.3);
}
.dra-book-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dra-book-back {
  width: 230px;
  height: 325px;
  bottom: 0;
  left: 0;
  transform: rotate(-5.5deg) translateY(6px);
  opacity: 0.8;
  box-shadow: -4px 8px 32px rgba(96,2,34,0.18);
}
.dra-book-front {
  width: 250px;
  height: 355px;
  top: 0;
  right: 0;
  z-index: 2;
  transform: rotate(2deg);
  box-shadow: 6px 12px 48px rgba(96,2,34,0.25), 0 2px 8px rgba(0,0,0,0.1);
}
.dra-books-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dra-books-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: #600222;
  line-height: 1.18;
  margin: 0.5rem 0 1rem;
}
.dra-books-title em {
  font-style: italic;
  font-weight: 300;
}
.dra-books-desc {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 300;
  color: #4a3a34;
  line-height: 1.85;
  margin-bottom: 2.25rem;
  max-width: 440px;
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — BIO
═══════════════════════════════════════ */
.dra-bio-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fdfbf7;
}
.dra-bio-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.dra-bio-name {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: #600222;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
}
.dra-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.dra-divider-gold {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, #AC9164, transparent);
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — CREDENCIAIS (luxury)
═══════════════════════════════════════ */
.dra-cred-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: #080408;
  position: relative;
  overflow: hidden;
}
/* Diagonal texture */
.dra-cred-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0px, transparent 64px,
    rgba(172,145,100,0.018) 64px, rgba(172,145,100,0.018) 65px
  );
  pointer-events: none;
}
/* Top/bottom gold rule */
.dra-cred-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(172,145,100,0.45), transparent);
}
.dra-cred-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.dra-cred-header {
  text-align: center;
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}
.dra-cred-eyebrow {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(172,145,100,0.8);
  margin: 0 0 0.75rem;
  display: block;
}
.dra-cred-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: #E2CFBF;
  margin: 0.25rem 0 0;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.dra-cred-ornament-svg {
  display: block;
  margin: 1.5rem auto 0;
  width: 220px;
  height: 20px;
}

/* Body: portrait sticky + timeline */
.dra-cred-body {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* ── Portrait ── */
.dra-cred-portrait { position: sticky; top: 110px; }
.dra-cred-portrait-frame {
  margin: 0;
  position: relative;
  border: 1px solid rgba(172,145,100,0.38);
  padding: 10px;
  background: #0d0610;
}
.dra-cred-portrait-frame::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 0.5px solid rgba(172,145,100,0.15);
  pointer-events: none;
  z-index: 1;
}
.dra-cred-portrait-frame img {
  width: 100%;
  aspect-ratio: 3 / 4.3;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: sepia(0.07) contrast(1.03) brightness(0.97);
}
.dra-cred-portrait-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem 1rem 1rem;
  border-top: 1px solid rgba(172,145,100,0.18);
  text-align: center;
  margin: 0;
}
.dra-cred-portrait-name {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: #E2CFBF;
  letter-spacing: 0.025em;
  display: block;
}
.dra-cred-portrait-deg {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #AC9164;
  display: block;
}

/* ── Timeline ── */
.dra-cred-timeline {
  position: relative;
  padding-left: 2.5rem;
  padding-top: 0.5rem;
}
.dra-cred-timeline-line {
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 2.5rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(172,145,100,0.9) 0%,
    rgba(172,145,100,0.5) 50%,
    rgba(172,145,100,0.08) 100%
  );
}
.dra-cred-item {
  position: relative;
  padding: 0 0 clamp(2.25rem, 4.5vw, 3.25rem) 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dra-cred-item:last-child { padding-bottom: 0; }
.dra-cred-item-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #AC9164;
  transform: translateX(50%);
  box-shadow: 0 0 0 3px rgba(172,145,100,0.12), 0 0 14px rgba(172,145,100,0.35);
}
.dra-cred-item-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #E2CFBF;
}
.dra-cred-tag {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(172,145,100,0.65);
  display: block;
}
.dra-cred-card-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: #E2CFBF;
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
.dra-cred-card-inst {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(226,207,191,0.4);
  margin: 0;
  line-height: 1.55;
}

/* ── Awards ── */
.dra-cred-awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(172,145,100,0.14);
  border: 1px solid rgba(172,145,100,0.14);
  position: relative;
}
.dra-cred-awards::before {
  content: '';
  position: absolute;
  top: -2rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(172,145,100,0.3), transparent);
}
.dra-cred-award-card {
  background: #0d0610;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.dra-cred-award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(to right, rgba(172,145,100,0.7), rgba(172,145,100,0.1));
}
.dra-cred-award-card:hover { background: rgba(172,145,100,0.045); }
.dra-cred-award-icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.dra-cred-award-icon-wrap svg { opacity: 0.75; }
.dra-cred-award-tag {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(172,145,100,0.65);
  display: block;
}
.dra-cred-award-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #D4B896;
  margin: 0;
  line-height: 1.25;
}
.dra-cred-award-desc {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(226,207,191,0.38);
  margin: 0;
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — QUOTE com vídeo
═══════════════════════════════════════ */
.dra-quote-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 40vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dra-quote-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.dra-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 1, 24, 0.72);
  z-index: 1;
}
.dra-quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 8vw, 8rem);
  max-width: 820px;
}
.dra-quote-ornament {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
}
.dra-quote-ornament svg {
  width: 160px;
  height: 20px;
}
.dra-quote-text {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  color: #E2CFBF;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}
.dra-quote-text em {
  font-style: italic;
}
.dra-quote-cite {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #AC9164;
  font-style: normal;
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — EZ ACADEMY
═══════════════════════════════════════ */
.dra-academy-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #f5efe3;
  position: relative;
}
.dra-academy-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(172,145,100,0.4), transparent);
}
.dra-academy-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.dra-academy-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dra-academy-text .dra-cred-eyebrow {
  color: #6B8E70;
  margin-bottom: 0.5rem;
}
.dra-academy-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  color: #600222;
  margin: 0.25rem 0 1rem;
  line-height: 1.1;
}
.dra-academy-text .dra-divider-gold {
  margin: 0 0 1.5rem;
  background: linear-gradient(to right, #AC9164 0%, transparent 100%);
}
.dra-academy-sub {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: #2a1a14;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.dra-academy-desc {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 0.95rem);
  font-weight: 300;
  color: #4a3a34;
  line-height: 1.85;
  margin: 0 0 1rem;
  max-width: 480px;
}
.dra-academy-visual {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 12px 20px 64px rgba(96,2,34,0.18);
}
.dra-academy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}
.dra-academy-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 60%, rgba(26,14,16,0.45) 100%),
    linear-gradient(to left, transparent 70%, rgba(74,1,24,0.15) 100%);
  pointer-events: none;
}

/* ── Academy button (fundo claro) ── */
.dra-academy-btn {
  display: inline-block;
  margin-top: 0.75rem;
  background: #600222;
  color: #F5F7ED;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border: 1px solid #600222;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.dra-academy-btn:hover {
  background: transparent;
  color: #600222;
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — CLÍNICA
═══════════════════════════════════════ */
.dra-clinica-section {
  background: #fdfbf7;
}
.dra-clinica-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 52vw, 680px);
}
.dra-clinica-photo {
  position: relative;
  overflow: hidden;
}
.dra-clinica-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.dra-clinica-photo:hover img { transform: scale(1.03); }
.dra-clinica-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right, transparent 50%, rgba(253,251,247,0.6) 100%
  );
  pointer-events: none;
}
.dra-clinica-text {
  background: #fdfbf7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  border-left: 1px solid rgba(172,145,100,0.18);
}
.dra-clinica-title {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  color: #600222;
  margin: 0.25rem 0 0;
  line-height: 1.1;
}
.dra-clinica-cta {
  display: inline-block;
  margin-top: 2rem;
  align-self: flex-start;
  background: #600222;
  color: #F5F7ED;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border: 1px solid #600222;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.dra-clinica-cta:hover {
  background: transparent;
  color: #600222;
}

/* ═══════════════════════════════════════
   DRA. STEFANNIA — CTA AGENDAMENTO
   (espelha .section-contact do index.html)
═══════════════════════════════════════ */
.dra-contact-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  background: #4a0118;
}
.dra-contact-painting-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dra-contact-painting-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.5) saturate(0.35) brightness(0.18) contrast(1.4);
  transform: translateZ(0);
}
.dra-contact-painting-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 1, 24, 0.8);
}
.dra-contact-section .container {
  position: relative;
  z-index: 1;
}
.dra-contact-card {
  background: #F5F7ED;
  padding: clamp(3rem, 6vw, 5rem) clamp(3rem, 8vw, 8rem);
  position: relative;
  border: 1px solid rgba(172, 145, 100, 0.3);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.dra-contact-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 0.7px solid rgba(172, 145, 100, 0.35);
  pointer-events: none;
  z-index: 1;
}
.dra-contact-headline {
  font-family: 'IvyOra Text', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: #600222;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.dra-contact-sub {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #7A5C5E;
  line-height: 1.8;
  max-width: 480px;
  margin: 1.5rem auto 2.5rem;
  position: relative;
  z-index: 2;
}
.dra-contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}
.dra-contact-langs {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AC6B9F;
  position: relative;
  z-index: 2;
}

/* Responsive — mobile */
@media (max-width: 768px) {
  .dra-hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 52vh auto;
    height: auto;
    min-height: 100svh;
  }
  .dra-hero-photo { order: -1; }
  .dra-hero-photo-caption { display: none; }
  .dra-hero-text { padding: 2.5rem 1.5rem 3.5rem; }
  .dra-hero-text-inner { max-width: 100%; }
  .dra-hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .dra-books-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .dra-books-content { align-items: center; }
  .dra-books-desc { max-width: 100%; }
  .dra-books-stack { width: 240px; height: 330px; }
  .dra-book-back { width: 196px; height: 276px; }
  .dra-book-front { width: 210px; height: 300px; }
  /* Bio */
  .dra-bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Credenciais luxury */
  .dra-cred-body { grid-template-columns: 1fr; }
  .dra-cred-portrait { position: static; }
  .dra-cred-portrait-frame img { aspect-ratio: 3/2; }
  .dra-cred-awards { grid-template-columns: 1fr; }
  /* Academy */
  .dra-academy-inner { grid-template-columns: 1fr; }
  .dra-academy-visual { order: -1; }
  .dra-academy-visual img { aspect-ratio: 16/9; }
  /* Clinica */
  .dra-clinica-inner { grid-template-columns: 1fr; min-height: auto; }
  .dra-clinica-photo { min-height: 300px; }
  .dra-clinica-text { border-left: none; border-top: 1px solid rgba(172,145,100,0.18); }
  .dra-clinica-cta { align-self: unset; }
  /* Contact */
  .dra-contact-card { padding: 2.5rem 2rem; }
  .dra-contact-actions { flex-direction: column; align-items: stretch; }
}
