/* ═══════════════════════════════════════════════════════════════
   MICHELLE HAKIM · ARTSKIN — Design System Premium
   Paleta: #665741 (taupe escuro) | #B2A078 (ouro) | #FFFFFF (branco)
   Tipografia: Cormorant Garamond (serif) + Lato (sans)
   Estética: Baroque Luxury · Skincare Premium
═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand Colors */
  --taupe:        #665741;
  --taupe-light:  #8B7A62;
  --taupe-pale:   #A89880;
  --gold:         #B2A078;
  --gold-light:   #CEC0A0;
  --gold-pale:    #E8DFD0;
  --cream:        #FAF8F5;
  --cream-dark:   #F2EDE6;
  --white:        #FFFFFF;
  --charcoal:     #2A2118;

  /* Semantic */
  --bg:           var(--cream);
  --bg-dark:      var(--taupe);
  --text:         var(--charcoal);
  --text-muted:   var(--taupe-light);
  --accent:       var(--gold);
  --accent-dark:  var(--taupe);

  /* Typography */
  --font-display: 'Cinzel', 'Bodoni Moda', Georgia, serif;
  --font-serif:   'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-script:  'Pinyon Script', 'Bodoni Moda', cursive;

  /* Spacing */
  --section-py:   7rem;
  --container:    1160px;

  /* Transitions */
  --transition:   0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s ease;

  /* Shadows */
  --shadow-sm:    0 4px 20px rgba(102,87,65,0.10);
  --shadow-md:    0 12px 48px rgba(102,87,65,0.16);
  --shadow-lg:    0 32px 80px rgba(102,87,65,0.22);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  cursor: none;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── 1. CURSOR PERSONALIZADO ──────────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

#cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(45deg); /* losango — ponta de pincel */
}

/* Ornamento de filigrana dourada que segue o cursor */
#cursor-ring {
  width: 52px;
  height: 52px;
  border-radius: 0;
  overflow: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s ease;
}

#cursor-ring .cursor-spin {
  transform-box: view-box;
  transform-origin: 26px 26px;
  animation: cursorSpin 22s linear infinite;
}

#cursor-ring .frame {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.75;
}
#cursor-ring .petal {
  fill: rgba(178,160,120,0.30);
  stroke: var(--gold);
  stroke-width: 0.6;
}
#cursor-ring .cursor-sparks circle {
  fill: var(--gold);
}

@keyframes cursorSpin {
  to { transform: rotate(360deg); }
}

body.cursor-hover #cursor-ring {
  transform: translate(-50%, -50%) scale(1.4);
}
body.cursor-hover #cursor-ring .frame { stroke: var(--gold-light); opacity: 0.95; }
body.cursor-hover #cursor-ring .petal { fill: rgba(178,160,120,0.55); }
body.cursor-hover #cursor-dot { background: var(--taupe); }

@media (hover: none) or (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ── 2. TIPOGRAFIA ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--taupe);
}

.display-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--taupe);
  line-height: 1.25;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
}

.section-title-light { color: var(--white); }
.section-title-light em { color: var(--gold-light); }

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--taupe-light);
  line-height: 1.8;
}

/* ── 3. ORNAMENTO SEPARADOR ───────────────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  margin: 1.6rem 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale));
}
.ornament-divider::after {
  background: linear-gradient(to left, transparent, var(--gold-pale));
}

.ornament-divider-icon {
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

/* ── 4. BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--taupe);
  color: var(--gold-pale);
  border-color: var(--taupe);
}
.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--taupe);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--taupe);
  color: var(--gold-pale);
  transform: translateY(-2px);
}

.btn-light {
  background: transparent;
  color: var(--gold-pale);
  border-color: rgba(232,223,208,0.5);
}
.btn-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── 5. CONTAINER & LAYOUT ────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: var(--section-py) 0; }

/* ── 6. REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── 7. LOADER ────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.loader-logo {
  width: clamp(190px, 42vw, 250px);
  height: auto;
  object-fit: contain;
  animation: loaderPulse 2.2s ease-in-out infinite;
}

.loader-brand-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: center;
}

.loader-brand-sub {
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-style: normal;
  line-height: 1;
  color: var(--gold);
  text-align: center;
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(102,87,65,0.18);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderBar 2s ease-in-out forwards;
}

@keyframes loaderBar {
  0%   { width: 0; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.96); }
  50%       { opacity: 1;   transform: scale(1.02); }
}

/* ── 8. HEADER ────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2.6rem;
  transition: var(--transition);
}

#header.scrolled .header-inner {
  padding: 1rem 2.6rem;
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(178,160,120,0.2), var(--shadow-sm);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.logo:hover { opacity: 0.8; }

.logo-monogram {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(10); /* branco no hero */
  transition: filter var(--transition);
}

#header.scrolled .logo-monogram {
  filter: brightness(1); /* normal no header claro */
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  transition: color var(--transition);
}

.logo-sub {
  font-family: var(--font-script);
  font-size: 1.15rem;
  font-style: normal;
  line-height: 1;
  color: var(--gold-light);
  margin-top: 0.1rem;
  transition: color var(--transition);
}

#header.scrolled .logo-name { color: var(--taupe); }
#header.scrolled .logo-sub  { color: var(--gold); }

/* Nav Desktop */
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition-fast);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover { color: var(--white); }
.nav-desktop a:hover::after { width: 100%; }

#header.scrolled .nav-desktop a { color: var(--taupe-light); }
#header.scrolled .nav-desktop a:hover { color: var(--taupe); }
#header.scrolled .nav-desktop a::after { background: var(--gold); }

/* O botão CTA mantém suas próprias cores no header claro (evita texto marrom sobre fundo marrom no hover) */
#header.scrolled .nav-desktop a.btn-outline { color: var(--taupe); }
#header.scrolled .nav-desktop a.btn-outline:hover { color: var(--gold-pale); }
#header.scrolled .nav-desktop a.btn-outline::after { background: transparent; }

/* Nav Mobile */
.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-mobile-btn span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.9);
  transition: var(--transition-fast);
}

#header.scrolled .nav-mobile-btn span { background: var(--taupe); }

.nav-mobile-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--taupe);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  color: var(--gold-pale);
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}
.nav-mobile a:hover { color: var(--white); }

.nav-mobile-close {
  position: absolute;
  top: 1.8rem; right: 2rem;
  font-size: 1.6rem;
  color: var(--gold-light);
}

/* ── 9. HERO ──────────────────────────────────────────────── */
/* O hero encosta no topo (sem o padding padrão de section) para o marrom
   ficar atrás do header fixo — evita a faixa creme do body sob o menu */
#inicio { padding: 0; }

#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--taupe);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D3025 0%, #665741 40%, #8B7A62 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(178,160,120,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

/* Ornamentos nos cantos do Hero */
.hero-ornament {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: contain;
  opacity: 0.18;
  pointer-events: none;
}
.hero-ornament-tl {
  top: 60px; left: 40px;
  transform: rotate(90deg);
}
.hero-ornament-tr {
  top: 60px; right: 40px;
  transform: rotate(180deg);
}
.hero-ornament-bl {
  bottom: 60px; left: 40px;
  transform: rotate(0deg);
}
.hero-ornament-br {
  bottom: 60px; right: 40px;
  transform: rotate(270deg);
}

/* Grid de duas colunas: texto à esquerda, imagem à direita */
.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-content {
  position: relative;
  text-align: left;
}

.hero-monogram {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 0 1.6rem;
  filter: brightness(3) saturate(0.6);
  animation: heroFadeIn 1.2s ease 0.3s both;
}

/* Coluna da imagem à direita */
.hero-media {
  position: relative;
  animation: heroFadeIn 1.2s ease 0.6s both;
}

/* Moldura dourada em offset ao redor da foto */
.hero-media::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(206,192,160,0.32);
  border-radius: 4px;
  pointer-events: none;
}

.hero-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 74vh;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(178,160,120,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(206,192,160,0.28);
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

.hero-media-placeholder {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-media-frame.is-empty .hero-media-placeholder {
  display: block;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  animation: heroFadeIn 1.2s ease 0.5s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 0.4rem;
  animation: heroFadeIn 1.2s ease 0.7s both;
}

.hero-title-italic {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold-light);
  display: block;
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 1.15;
  margin-top: 0.12em;
  letter-spacing: 0;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
  margin: 1.8rem 0 2.6rem;
  max-width: 440px;
  line-height: 1.9;
  animation: heroFadeIn 1.2s ease 0.9s both;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease 1.1s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: heroFadeIn 1.2s ease 1.4s both;
}

.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 10. SOBRE ────────────────────────────────────────────── */
#sobre {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#sobre::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(178,160,120,0.08), transparent 70%);
  pointer-events: none;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.sobre-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 2px;
  display: block;
}

.sobre-img-frame::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold-pale);
  border-radius: 2px;
  z-index: -1;
}

.sobre-ornament-tl {
  position: absolute;
  top: -24px; left: -24px;
  width: 80px;
  opacity: 0.35;
  transform: rotate(0deg);
}

.sobre-ornament-br {
  position: absolute;
  bottom: 20px; right: -40px;
  width: 80px;
  opacity: 0.35;
  transform: rotate(180deg);
}

.sobre-text { padding: 2rem 0; }

.sobre-text .section-label { margin-bottom: 0.8rem; }

.sobre-text .section-title {
  margin-bottom: 1.6rem;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
}

.sobre-bio {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--taupe-light);
  margin-bottom: 1.4rem;
}

.sobre-credenciais {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-pale);
}

.credencial-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--taupe-light);
}

.credencial-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ── 11. PROCEDIMENTOS PREVIEW (Home) ─────────────────────── */
#procedimentos-preview {
  background: var(--taupe);
  position: relative;
  overflow: hidden;
}

#procedimentos-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(178,160,120,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.proc-preview-header {
  text-align: center;
  margin-bottom: 4rem;
}

.proc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.proc-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.4rem;
  border: 1px solid rgba(178,160,120,0.12);
  transition: var(--transition);
  overflow: hidden;
  cursor: none;
}

.proc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(178,160,120,0.06), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none; /* não pode bloquear o clique no "Saiba mais" */
}

.proc-card:hover {
  border-color: rgba(178,160,120,0.4);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.proc-card:hover::before { opacity: 1; }

.proc-card-icon {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.8rem;
  transition: width var(--transition);
}

.proc-card:hover .proc-card-icon { width: 60px; }

.proc-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.proc-card-desc {
  font-size: 0.85rem;
  color: rgba(232,223,208,0.55);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.proc-card-link {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.proc-card-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.proc-card:hover .proc-card-link {
  gap: 0.8rem;
  color: var(--gold-light);
}

.proc-preview-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── 12. DIFERENCIAIS ─────────────────────────────────────── */
#diferenciais {
  background: var(--cream-dark);
  position: relative;
}

.diferenciais-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.diferencial-card {
  background: var(--white);
  padding: 2.8rem 2.6rem;
  border-top: 2px solid var(--gold-pale);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.diferencial-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diferencial-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.diferencial-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--taupe);
  margin-bottom: 0.8rem;
}

.diferencial-desc {
  font-size: 0.88rem;
  color: var(--taupe-light);
  line-height: 1.8;
}

/* Antes/depois dentro da página de procedimentos */
.proc-resultados {
  margin-top: 2.4rem;
}
.proc-resultados-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.proc-resultados-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.proc-resultados-grid img {
  height: 320px;
  width: auto;
  max-width: 100%;
  display: block;
  border: 1px solid rgba(178,160,120,0.28);
  border-radius: 2px;
}

@media (max-width: 560px) {
  .proc-resultados-grid img { height: auto; width: 100%; }
}

/* ── 12a. CARROSSEL DUPLO (depoimentos + antes/depois) ────────
   Faixa de cima: depoimentos em texto, correndo para a esquerda.
   Faixa de baixo: antes/depois, correndo para a direita.
   A animação é só transform, e cada faixa é duplicada no HTML
   para o loop não ter emenda. */
.ba-marquee {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  overflow: hidden;                  /* recorta as faixas na largura da seção */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.ba-row {
  display: flex;
  width: max-content;
}

.ba-track {
  display: flex;
  gap: 1.4rem;
  padding-right: 1.4rem;   /* precisa ser igual ao gap p/ o loop ficar uniforme */
  flex: 0 0 auto;
  animation: baScroll 58s linear infinite;
}
.ba-row-reverse .ba-track {
  animation-duration: 78s;
  animation-direction: reverse;
}

/* Faixa de antes/depois no fim dos procedimentos (fundo taupe) */
.ba-marquee-dark {
  margin-top: 4.5rem;
  position: relative;
  z-index: 1;
}
.ba-marquee-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 1.6rem;
}
.ba-marquee-dark .ba-card {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
}
.ba-marquee-dark .ba-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

/* Faixa de cima: depoimentos em texto */
.ba-row-depo .ba-track {
  gap: 2rem;
  padding: 1.2rem 2rem 1.8rem 0;   /* vertical: espaço p/ sombra e hover-lift */
  animation-duration: 62s;
}
.ba-row-depo .depo-card {
  width: 380px;
  max-width: 84vw;
}

@keyframes baScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-100%, 0, 0); }
}

.ba-marquee:hover .ba-track,
.ba-marquee:focus-within .ba-track { animation-play-state: paused; }

.ba-card {
  flex: 0 0 auto;
  display: block;
  border: 1px solid rgba(178,160,120,0.28);
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.ba-card:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(102,87,65,0.16);
}
/* height fixa + width auto: as imagens trazem width/height no HTML,
   então o navegador já reserva o espaço certo antes de carregar */
.ba-card img {
  display: block;
  height: 400px;
  width: auto;
}

@media (prefers-reduced-motion: reduce) {
  .ba-track { animation: none; }
  .ba-row { overflow-x: auto; scrollbar-width: none; }
  .ba-row::-webkit-scrollbar { display: none; }
}

@media (max-width: 700px) {
  .ba-card img { height: 260px; }
  .ba-marquee { gap: 1rem; }
  .ba-track { gap: 1rem; padding-right: 1rem; }
  .ba-row-depo .ba-track { gap: 1.2rem; padding: 1rem 1.2rem 1.4rem 0; }
}

/* ── 12b. DEPOIMENTOS ─────────────────────────────────────── */
#depoimentos {
  background: var(--cream);
  position: relative;
}

.depo-header {
  text-align: center;
  margin-bottom: 4rem;
}
.depo-header .section-label { margin-bottom: 0.9rem; }
.depo-header .section-title { margin-bottom: 1.2rem; }

/* Slider de depoimentos — passa sozinho, mas dá pra arrastar (dedo/mouse).
   Scroll nativo + auto-scroll controlado no JS (michelle.js) */
.depo-slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;            /* Firefox: esconde a barra */
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.depo-slider::-webkit-scrollbar { display: none; } /* Chrome/Safari: esconde a barra */
.depo-slider.is-dragging { cursor: grabbing; }
.depo-slider.is-dragging .depo-card { pointer-events: none; } /* não dispara hover/click no meio do arraste */

.depo-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1.2rem 0 1.6rem; /* só vertical: espaço p/ sombra e hover-lift */
}

.depo-card {
  position: relative;
  flex: 0 0 auto;
  width: 380px;
  max-width: 82vw;
  background: var(--white);
  border: 1px solid rgba(178,160,120,0.22);
  padding: 3rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(102,87,65,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.depo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(102,87,65,0.13);
  border-color: rgba(178,160,120,0.5);
}

.depo-quote-mark {
  position: absolute;
  top: 0.6rem;
  right: 1.6rem;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold-pale);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.depo-stars {
  display: flex;
  gap: 0.28rem;
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 1.3rem;
}

.depo-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--taupe);
  margin-bottom: 2.2rem;
  flex: 1;
}

.depo-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.depo-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold-pale);
  background: linear-gradient(145deg, var(--gold), var(--taupe));
  display: flex;
  align-items: center;
  justify-content: center;
}
.depo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Iniciais só aparecem quando não há foto — o onerror do <img> o remove,
   e aí este seletor deixa de casar e as iniciais voltam. */
.depo-avatar img + .depo-avatar-fallback { display: none; }

.depo-avatar-fallback {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.depo-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--taupe);
}
.depo-loc {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}
.depo-loc i { margin-right: 0.35rem; }

/* ── 13. QUOTE ────────────────────────────────────────────── */
#quote {
  background: linear-gradient(135deg, #DAD2BE 0%, #CDC3AB 55%, #C0B69A 100%);
  padding: calc(var(--section-py) * 0.8) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#quote::before,
#quote::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

#quote::before {
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12), transparent 70%);
}

.quote-ornament-top,
.quote-ornament-bottom {
  width: 80px;
  opacity: 0.3;
  margin: 0 auto 1.2rem;
}

.quote-ornament-bottom {
  margin-top: 1.2rem;
  transform: rotate(180deg);
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #4A3E2B;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.quote-text strong {
  font-weight: 400;
  color: var(--charcoal);
  font-style: normal;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(74,62,43,0.55);
  margin-top: 2rem;
}

/* ── 14. CONTATO ──────────────────────────────────────────── */
#contato {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contato-text .section-title { margin-bottom: 1.2rem; }

.contato-text .lead { margin-bottom: 2rem; }

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--taupe-light);
}

.contato-item-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Formulário */
.form-card {
  background: var(--white);
  padding: 3.2rem;
  box-shadow: var(--shadow-md);
  border-top: 2px solid var(--gold);
  position: relative;
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  inset-block-end: -12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 1px solid var(--gold-pale);
  z-index: -1;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  min-width: 0; /* impede que <select> com opção longa estoure a largura */
}

.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-light);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--gold-pale);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--taupe);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── 15. FOOTER ───────────────────────────────────────────── */
#footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1.7fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Alinha os títulos das colunas de links com o nome da marca à esquerda */
.footer-inner > div:not(.footer-brand) { margin-top: 4.2rem; }

.footer-brand .logo-monogram-footer {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(3) saturate(0.5);
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}

.footer-brand-sub {
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-style: normal;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-bio {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Procedimentos em duas colunas */
.footer-links--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-see-all {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  transition: color var(--transition-fast);
}
.footer-see-all:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.05em;
}

.footer-ornament {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.15;
}

.footer-ornament img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(5);
}

/* ── 16. PÁGINAS INTERNAS (Procedimentos, Pós-proc, Contraind.) */
.page-hero {
  background: var(--taupe);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D3025 0%, #665741 60%, #8B7A62 100%);
}

.page-hero-ornament {
  position: absolute;
  width: 140px;
  opacity: 0.15;
  pointer-events: none;
}
.page-hero-ornament.tl { top: 40px; left: 40px; }
.page-hero-ornament.tr { top: 40px; right: 40px; transform: rotate(90deg); }

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.page-hero-title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: normal;
  font-size: 1.25em;
  line-height: 1;
  margin-left: 0.18em;
  display: inline-block;
}

.page-hero-sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
}

/* Procedimentos Grid */
.proc-section {
  padding: 6rem 0;
  background: var(--cream);
}

.proc-section:nth-child(even) { background: var(--cream-dark); }

.proc-section-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.proc-section-aside {
  position: sticky;
  top: 7rem;
}

.proc-aside-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proc-aside-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--taupe);
  margin-bottom: 0.8rem;
}

.proc-aside-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.4rem;
}

.proc-aside-desc {
  font-size: 0.9rem;
  color: var(--taupe-light);
  line-height: 1.8;
}

.proc-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.proc-info-card {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-left: 2px solid var(--gold-pale);
  transition: border-color var(--transition-fast), transform var(--transition);
}

.proc-info-card:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.proc-info-card-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.proc-info-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--taupe);
  margin-bottom: 0.6rem;
}

.proc-info-card-text {
  font-size: 0.85rem;
  color: var(--taupe-light);
  line-height: 1.75;
}

/* Lista de itens dos procedimentos */
.proc-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.proc-list li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.87rem;
  color: var(--taupe-light);
  line-height: 1.6;
}

.proc-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* Aviso/alerta */
.alert-card {
  background: rgba(178,160,120,0.08);
  border: 1px solid var(--gold-pale);
  padding: 1.4rem 1.8rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.alert-card-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.alert-card-text {
  font-size: 0.84rem;
  color: var(--taupe-light);
  line-height: 1.75;
  font-style: italic;
}

/* Contraindicações */
.contraindicacoes-section {
  padding: 5rem 0;
  background: var(--cream);
}

.contraindicacoes-section:nth-child(even) { background: var(--cream-dark); }

.contraind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contraind-card {
  background: var(--white);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
  border-top: 2px solid var(--gold-pale);
  transition: var(--transition);
}

.contraind-card:hover {
  border-top-color: var(--taupe);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contraind-card-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

.contraind-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--taupe);
  margin-bottom: 1rem;
}

.contraind-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contraind-list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: var(--taupe-light);
  line-height: 1.6;
}

.contraind-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* Sub-navegação das páginas internas */
.sub-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gold-pale);
  position: sticky;
  top: 0;
  z-index: 100;
}

.sub-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 2rem;
}

.sub-nav-back {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.sub-nav-back:hover { color: var(--taupe); }

.sub-nav-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sub-nav-tab {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-light);
  padding: 0.4rem 1rem;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.sub-nav-tab:hover,
.sub-nav-tab.active {
  color: var(--taupe);
  border-color: var(--gold-pale);
  background: var(--cream);
}

/* Seção CTA final das páginas internas */
.page-cta {
  background: var(--taupe);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(178,160,120,0.1), transparent 70%);
  pointer-events: none;
}

.page-cta .section-title-light { margin-bottom: 1rem; }

.page-cta p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
}

/* ── 17. WHATSAPP FLOAT ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* Aviso delicado (toast) ao copiar link */
.mh-toast {
  position: fixed;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(102,87,65,0.96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.4rem;
  border-radius: 40px;
  border: 1px solid rgba(206,192,160,0.35);
  box-shadow: 0 14px 44px rgba(102,87,65,0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), visibility 0.35s ease;
}
.mh-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mh-toast i {
  color: var(--gold-light);
  font-size: 0.68rem;
}

/* Botão copiar link da seção (páginas internas) */
.copy-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 0.6rem;
  vertical-align: middle;
  position: relative;
  top: -0.14em;
  border-radius: 50%;
  border: 1px solid var(--gold-pale);
  background: rgba(178,160,120,0.08);
  color: var(--gold);
  font-size: 0.6rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.copy-link-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-1px);
}
.copy-link-btn.copied {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Botão voltar ao topo */
.back-to-top {
  position: fixed;
  bottom: calc(2rem + 52px + 0.8rem);
  right: 2rem;
  z-index: 500;
  width: 52px;
  height: 52px;
  background: var(--taupe);
  color: var(--gold-light);
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ── 18. RESPONSIVO ───────────────────────────────────────── */
@media (max-width: 1024px) {
  /* No mobile o hero cresce em vez de fixar 100vh: padding-top limpa o menu
     fixo e padding-bottom dá respiro na CTA */
  #hero { height: auto; min-height: 100vh; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    max-width: 620px;
    padding-top: 6.5rem;
    padding-bottom: 5rem;
  }
  .hero-content { text-align: center; }
  .hero-monogram { margin: 0 auto 1.6rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-media { max-width: 360px; width: 100%; margin: 0 auto; }
  .hero-media::before { inset: -12px; }
  .hero-media-frame { max-height: none; }
  .hero-scroll { display: none; }

  .depo-card { width: 340px; }

  /* No mobile: título → foto → descrição. Achata o .sobre-text com
     display:contents pra poder ordenar título e bio em torno da foto */
  .sobre-inner { display: flex; flex-direction: column; gap: 0; }
  .sobre-text { display: contents; }
  .sobre-text > * { order: 4; }
  .sobre-text > .section-label { order: 1; }
  .sobre-text > .section-title { order: 2; }
  .sobre-visual { order: 3; max-width: 520px; width: 100%; margin: 1.2rem auto 2.6rem; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-inner > div:not(.footer-brand) { margin-top: 0; }
  .proc-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .proc-section-aside { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 4.5rem; }

  .nav-desktop { display: none; }
  .nav-mobile-btn { display: flex; }

  .hero-ornament { width: 100px; }
  .hero-ornament-tl { top: 80px; left: 16px; }
  .hero-ornament-tr { top: 80px; right: 16px; }
  .hero-ornament-bl, .hero-ornament-br { display: none; }

  .br-desktop { display: none; }

  /* Preview de procedimentos em 2 colunas no mobile (menos scroll) */
  .proc-preview-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .proc-card { padding: 1.6rem 1.1rem; }
  .proc-card-icon { margin-bottom: 1rem; }
  .proc-card-title { font-size: 1rem; letter-spacing: 0; margin-bottom: 0.5rem; }
  .proc-card-desc {
    font-size: 0.72rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .proc-card-link { font-size: 0.55rem; letter-spacing: 0.15em; }

  .diferenciais-grid { grid-template-columns: 1fr; }
  .proc-info-grid { grid-template-columns: 1fr; }
  .contraind-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links--cols { grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .header-inner { padding: 1.4rem 1.4rem; }
  #header.scrolled .header-inner { padding: 0.9rem 1.4rem; }

  .sobre-ornament-tl,
  .sobre-ornament-br { display: none; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .sub-nav-tabs { justify-content: center; }
  .sub-nav-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

@media (max-width: 480px) {
  :root { --section-py: 3.5rem; }
  .hero-title { letter-spacing: 0.03em; }
  .hero-cta { flex-direction: column; align-items: center; }
  .form-card { padding: 2rem 1.4rem; }
  .proc-card { padding: 2rem 1.6rem; }
}
