/* ============================================================
   LP Dra. Rafaela Lehmkuhl — LEDERM Dermatologia
   HTML vanilla. Replicação fiel da LP Manus original.
   ============================================================ */

/* === BOILERPLATE MOBILE-SAFE RD360 === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
  margin: 0;
}
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
pre, code { max-width: 100%; overflow-x: auto; }
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="password"], input[type="search"],
input[type="url"], textarea, select { font-size: 16px; }
body.modal-open { overflow: hidden; }

/* === TOKENS === */
:root {
  /* Cores extraídas do projeto Manus original (oklch convertido pra hex) */
  --gold: #C8A87A;
  --gold-dark: #B08B5A;
  --gold-light: #E5D4BC;
  --beige: #D8C2A1;
  --beige-light: #F0E5DC;
  --rose: #F0E5DC;
  --rose-light: #F8F0EA;
  --cream: #F8F4EC;
  --cream-warm: #FAF6F0;
  --bg-white: #FFFFFF;

  --text-dark: #4A3D32;
  --text-medium: #6E5D4D;
  --text-light: #8B7867;
  --text-muted: #A89481;

  --border-light: #E8DCC8;
  --border-soft: #F0E5DC;

  --font-sans: 'Montserrat', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 16px rgba(74, 61, 50, 0.05);
  --shadow-md: 0 8px 30px rgba(74, 61, 50, 0.08);
  --shadow-lg: 0 20px 50px rgba(74, 61, 50, 0.12);
  --shadow-gold: 0 8px 25px rgba(200, 168, 122, 0.30);

  --container-max: 1280px;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
}

p { margin: 0; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }
em { font-style: italic; color: var(--gold); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(200, 168, 122, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200, 168, 122, 0.6); }

::selection { background: rgba(200, 168, 122, 0.2); color: var(--text-dark); }

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 800px; }

.section {
  padding: 96px 0;
  position: relative;
}
.section-cream { background: var(--cream); }
.section-white { background: var(--bg-white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--rose);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-medium);
  margin-bottom: 16px;
}
.section-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.section-badge-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.80);
}
.section-badge-light .dot { background: rgba(255,255,255,0.6); }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 16px;
}
.section-title-left { text-align: left; }
.section-title-light { color: white; }
.section-title-light em { color: var(--gold-light); }

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-medium);
  font-weight: 300;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 8px 0;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--gold);
  color: white;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-onlight {
  background: white;
  color: var(--text-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-onlight:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.95);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s ease;
  background: transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-medium);
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 4px;
}
.nav-mobile-toggle .icon-close { display: none; }
.nav-mobile-toggle.is-open .icon-menu { display: none; }
.nav-mobile-toggle.is-open .icon-close { display: block; }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: white;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.nav-mobile-menu.is-open { display: flex; transform: translateX(0); }
.nav-mobile-link {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  border-bottom: 1px solid var(--cream);
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-menu .btn { margin-top: 24px; }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FDF6EE 0%, #F8EFE3 50%, #FAF1E5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-1 {
  top: 25%; right: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 168, 122, 0.07), transparent 70%);
}
.hero-blob-2 {
  bottom: 25%; left: 16%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(216, 194, 161, 0.05), transparent 70%);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { order: 1; }
.hero-photo-col { order: 2; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-name {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.hero-cta-note {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--text-light);
}
.hero-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-stars { display: inline-flex; gap: 2px; }
.hero-stars-text {
  font-size: 13px;
  color: var(--text-light);
}

.hero-photo-col {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(200, 168, 122, 0.18), 0 0 0 1px rgba(200, 168, 122, 0.10);
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}
.hero-photo-frame img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center 30%;
}
.hero-photo-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.hero-photo-card-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 4px;
}
.hero-photo-card-info {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.hero-photo-border {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  max-width: 600px;
  height: 100%;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(200, 168, 122, 0.20);
  z-index: 0;
  pointer-events: none;
}
.hero-scroll {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  color: var(--text-light);
  transition: letter-spacing 0.3s ease;
}
.hero-scroll:hover span { letter-spacing: 0.40em; }
.hero-scroll svg { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* === SOBRE === */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-photo {
  position: relative;
}
.sobre-main-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-main-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.sobre-secondary-frame {
  position: absolute;
  bottom: -30px;
  right: -16px;
  width: 180px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}
.sobre-secondary-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre-tags {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floating-tag {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-medium);
}
.sobre-content { padding-left: 16px; }
.sobre-content .section-badge { margin-bottom: 24px; }
.sobre-content .section-title {
  text-align: left;
  margin-bottom: 28px;
}
.sobre-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 16px;
}
.sobre-quote {
  border-left: 2px solid var(--gold);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-medium);
}
.sobre-quote::before, .sobre-quote::after { content: none; }

/* === GESTÃO === */
.gestao {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}
.gestao-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gestao-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gestao-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 50, 40, 0.85), rgba(80, 65, 50, 0.78));
}
.gestao-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.gestao-inner .section-badge { margin-bottom: 24px; }
.gestao-inner .section-title { margin: 16px 0 24px; }
.gestao-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.gestao-pillars .dot-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
}
.gestao-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 32px;
}

/* === PROCESSO === */
.processo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.processo-card {
  background: transparent;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}
.processo-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
}
.processo-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 48px;
  font-weight: 300;
  color: rgba(200, 168, 122, 0.10);
  line-height: 1;
}
.processo-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: box-shadow 0.3s ease;
}
.processo-card:hover .processo-icon { box-shadow: var(--shadow-sm); }
.processo-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.processo-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* === TRATAMENTOS (accordion) === */
.tratamentos-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tratamento-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}
.tratamento-item[open] {
  background: var(--cream);
  border-color: var(--border-light);
}
.tratamento-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.tratamento-summary::-webkit-details-marker { display: none; }
.tratamento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.tratamento-item[open] .tratamento-icon {
  background: var(--gold);
}
.tratamento-item[open] .tratamento-icon svg {
  stroke: white;
}
.tratamento-text { flex: 1; }
.tratamento-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
}
.tratamento-tag {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.tratamento-item[open] .tratamento-tag { display: none; }
.tratamento-chevron {
  flex-shrink: 0;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.tratamento-item[open] .tratamento-chevron { transform: rotate(180deg); }
.tratamento-body {
  padding: 0 20px 20px 84px;
}
.tratamento-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
}
.tratamentos-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--text-light);
  max-width: 640px;
  margin: 32px auto 0;
}

/* === RESULTADOS (Before/After Slider) === */
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.resultado { display: flex; flex-direction: column; gap: 12px; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
  user-select: none;
  background: #f0f0f0;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(0 50% 0 0);
}
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 10;
  pointer-events: none;
  transform: translateX(-50%);
}
.ba-line::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  cursor: ew-resize;
}
.ba-label {
  position: absolute;
  top: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-medium);
  z-index: 5;
  pointer-events: none;
}
.ba-label-left { left: 12px; }
.ba-label-right { right: 12px; }
.resultado-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
}
.resultados-disclaimer {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: var(--text-light);
}

/* === AVALIAÇÕES === */
.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.rating-stars { display: inline-flex; gap: 2px; }
.rating-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
}
.rating-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  padding: 4px 12px;
  background: var(--rose);
  border-radius: 9999px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.rating-link:hover {
  background: var(--gold);
  color: white;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow 0.3s ease;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 16px;
}
.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* === DRA SECTION === */
.dra-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.dra-photo { position: relative; }
.dra-photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(200, 168, 122, 0.18);
}
.dra-photo-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
}
.dra-photo-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.dra-card-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
}
.dra-card-info {
  font-size: 13px;
  color: var(--gold);
  margin-top: 2px;
}
.dra-content .section-badge { margin-bottom: 24px; }
.dra-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.dra-quote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 24px 0;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-medium);
  line-height: 1.5;
}
.dra-quote::before, .dra-quote::after { content: none; }
.dra-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 14px;
}
.dra-content .gold-line { margin: 24px 0; }

/* === PROCEDIMENTOS (carrossel) === */
.procedimentos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.carousel-controls {
  display: flex;
  gap: 10px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.carousel-btn:hover svg { stroke: white !important; }

.procedimentos-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.procedimentos-carousel::-webkit-scrollbar { display: none; }
.procedimento-card {
  flex-shrink: 0;
  width: 280px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
}
.procedimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.procedimento-num {
  display: block;
  font-size: 36px;
  font-weight: 300;
  color: rgba(200, 168, 122, 0.20);
  margin-bottom: 16px;
  line-height: 1;
}
.procedimento-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.procedimento-card:hover .procedimento-title { color: var(--gold); }
.procedimento-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-medium);
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question { color: var(--gold); }
.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}
.faq-item[open] .faq-chevron {
  background: var(--gold);
  color: white;
  transform: rotate(180deg);
}
.faq-answer { padding: 0 48px 22px 0; }
.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
}

/* === CLÍNICA (contato + galeria) === */
.clinica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.clinica-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.clinica-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.clinica-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clinica-row h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.clinica-row p,
.clinica-row a {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  display: block;
}
.clinica-row a:hover { color: var(--gold); }
.clinica-info .btn { align-self: flex-start; margin-top: 12px; }

.clinica-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  min-height: 380px;
}
.clinica-map iframe { width: 100%; height: 100%; min-height: 380px; }

.clinica-galeria { margin-top: 16px; }
.galeria-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.galeria-header h3 {
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.galeria-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item figcaption {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galeria-item:hover figcaption { opacity: 1; }
.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galeria-item:hover::after { opacity: 1; }

/* === INSTAGRAM === */
.instagram-section {
  padding: 64px 0 0;
  background: var(--cream);
}
.instagram-header {
  text-align: center;
  margin-bottom: 32px;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.instagram-handle a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
}
.instagram-handle a:hover { color: var(--gold); }
.instagram-section h3 {
  font-size: 26px;
  font-weight: 300;
  color: var(--text-dark);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.instagram-item:hover img { transform: scale(1.10); }
.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}
.instagram-item:hover::after { background: rgba(0, 0, 0, 0.20); }

/* === CTA FINAL === */
.cta-final {
  padding: 112px 0;
  background: var(--text-dark);
  text-align: center;
}
.cta-final-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 32px;
}
.cta-final-title em { color: var(--gold-light); font-style: italic; }

/* === FOOTER === */
.footer {
  padding: 32px 0 24px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.6;
}
.footer-copy {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-links a {
  font-size: 11px;
  color: var(--text-light);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-sep {
  width: 1px;
  height: 12px;
  background: var(--border-light);
}

.footer-by {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 168, 122, 0.15);
  display: flex;
  justify-content: center;
}
.footer-by-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 9999px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.footer-by-link:hover { opacity: 1; }
.footer-by-text {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.footer-by-logo { height: 18px; width: auto; opacity: 0.7; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
.whatsapp-float.is-visible { opacity: 1; transform: scale(1); }
.whatsapp-float:hover {
  transform: scale(1.10) !important;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1100px) {
  .processo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-mobile-toggle { display: block; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .hero { min-height: auto; padding-top: 110px; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { order: 2; }
  .hero-photo-col { order: 1; }
  .hero-photo-frame { max-width: 380px; margin: 0 auto; }
  .hero-photo-frame img { height: 480px; }
  .hero-photo-card { left: 0; right: auto; }
  .hero-photo-border { display: none; }
  .hero-scroll { display: none; }

  .sobre-grid, .dra-grid, .clinica-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-secondary-frame { right: 8px; bottom: -16px; width: 130px; height: 160px; }
  .sobre-content { padding-left: 0; }

  .gestao { padding: 80px 0; }
  .gestao-pillars { gap: 14px; }

  .processo-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .resultados-grid { grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

  .reviews-grid { grid-template-columns: 1fr; }

  .galeria-grid { grid-template-columns: repeat(2, 1fr); }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  .clinica-map { min-height: 320px; }
  .clinica-map iframe { min-height: 320px; }

  .cta-final { padding: 80px 0; }

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

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }

  .section { padding: 56px 0; }

  .hero-photo-frame { max-width: 320px; }
  .hero-photo-frame img { height: 420px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-cta-note { text-align: center; }

  .processo-grid { grid-template-columns: 1fr; }
  .processo-card { padding: 20px; }

  .tratamento-summary { padding: 14px 16px; }
  .tratamento-icon { width: 38px; height: 38px; }
  .tratamento-body { padding: 0 16px 16px 70px; }
  .tratamento-title { font-size: 14px; }

  .ba-handle { width: 38px; height: 38px; }
  .ba-label { font-size: 9px; padding: 4px 10px; }

  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item { aspect-ratio: 16/10; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  .footer-links { flex-wrap: wrap; justify-content: center; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}
