/* ==========================================================================
   Dra. Viviane Nunes — stylesheet estático (convertido do projeto React)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --radius: 0.875rem;

  --base: #fdf6f3;
  --surface: #f3d9d0;
  --accent: #b8736a;
  --accent-foreground: #fdf6f3;
  --primary: #3a2420;
  --primary-foreground: #fdf6f3;

  --muted: #f8e2de;
  --muted-foreground: #6a4d48;
  --border: rgba(58, 36, 32, 0.1);

  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Outfit", sans-serif;

  --shadow-soft: 0 10px 40px -10px rgba(58, 36, 32, 0.18);
  --shadow-cta: 0 18px 50px -12px rgba(184, 115, 106, 0.45);
}

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--base);
  color: var(--primary);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--accent); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background-color: rgba(184, 115, 106, 0.25); }

.wrap { margin-left: auto; margin-right: auto; max-width: 80rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.wrap-6xl { max-width: 72rem; }
.wrap-5xl { max-width: 64rem; }
.wrap-3xl { max-width: 48rem; }
.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.rule { height: 1px; width: 2.5rem; background-color: rgba(58,36,32,0.2); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(58,36,32,0.05);
  background-color: rgba(253, 246, 243, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav-logo { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: -0.01em; color: var(--primary); }
.nav-links { display: none; align-items: center; gap: 2rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a, .nav-links button { transition: color 0.2s ease; }
.nav-links a:hover, .nav-links button:hover { color: var(--accent); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: flex; align-items: center; gap: 0.375rem; }
.nav-dropdown-btn svg { width: 10px; height: 10px; transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  border-radius: 1rem;
  border: 1px solid rgba(58,36,32,0.05);
  background-color: rgba(253,246,243,0.98);
  padding: 0.75rem;
  padding-top: 1.25rem;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  min-width: 15rem;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  white-space: nowrap;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(58,36,32,0.8);
}
.nav-dropdown-menu a:hover { background-color: rgba(243,217,208,0.4); color: var(--primary); }
.nav-dropdown-menu a.active { background-color: rgba(243,217,208,0.3); color: var(--primary); }
.nav-cta {
  white-space: nowrap;
  display: none;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--base);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease;
}
.nav-cta:hover { transform: scale(1.02); }
@media (min-width: 640px) { .nav-cta { display: inline-block; } }

/* ---------- Buttons ---------- */
.btn-primary {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--base);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease;
}
.btn-primary:hover { transform: scale(1.02); }
.btn-icon-circle { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; border-radius: 999px; background-color: rgba(253,246,243,0.15); }
.btn-icon-circle svg { width: 1rem; height: 1rem; }

.btn-accent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.25rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.2s ease;
}
.btn-accent-link:hover { gap: 0.75rem; }
.btn-accent-link svg { width: 1rem; height: 1rem; }

.btn-text-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(58,36,32,0.7);
  text-underline-offset: 8px;
  transition: color 0.2s ease;
}
.btn-text-link:hover { color: var(--accent); text-decoration: underline; }

.btn-white {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background-color: var(--base);
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease;
}
.btn-white:hover { transform: scale(1.02); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background-color: var(--accent);
  color: var(--base);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.btn-accent:hover { transform: scale(1.02); }

.btn-whatsapp {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--base);
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease;
}
.btn-whatsapp:hover { transform: scale(1.02); }
.btn-whatsapp svg { width: 1.25rem; height: 1.25rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(58,36,32,0.5);
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--accent); }
.back-link svg { width: 0.75rem; height: 0.75rem; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; padding-top: 6rem; }
.hero .wrap {
  display: grid;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) { .hero .wrap { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 4rem; padding-top: 5rem; padding-bottom: 5rem; } }

.hero h1 { font-size: 2.75rem; line-height: 1.05; margin-top: 1rem; }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-lead { margin-top: 2rem; max-width: 32rem; font-size: 1rem; line-height: 1.7; color: rgba(58,36,32,0.8); }
@media (min-width: 768px) { .hero-lead { font-size: 1.125rem; } }
.hero-cta-row { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; align-items: center; } }
.hero-meta { margin-top: 3rem; display: flex; align-items: center; gap: 1rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(58,36,32,0.5); }

.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4/5; border-radius: 1.75rem; object-fit: cover; box-shadow: var(--shadow-cta); }
.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: none;
  border-radius: 1rem;
  border: 1px solid rgba(58,36,32,0.1);
  background-color: rgba(253,246,243,0.95);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .hero-badge { display: block; } }
.hero-badge .label { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(58,36,32,0.5); }
.hero-badge .value { font-family: var(--font-serif); font-size: 1rem; color: var(--primary); line-height: 1.3; margin-top: 0.125rem; }

/* ---------- Authority (testimonials) ---------- */
.authority { border-top: 1px solid rgba(58,36,32,0.05); border-bottom: 1px solid rgba(58,36,32,0.05); background-color: rgba(243,217,208,0.3); padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .authority { padding-top: 5rem; padding-bottom: 5rem; } }
.authority-label { text-align: center; margin-bottom: 2.5rem; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(58,36,32,0.5); }
.testimonial-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { border-radius: 1rem; border: 1px solid rgba(58,36,32,0.05); background-color: var(--base); padding: 1.75rem; box-shadow: var(--shadow-soft); }
.testimonial-head { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px; background-color: rgba(184,115,106,0.15); font-family: var(--font-serif); font-size: 1.125rem; color: var(--accent); }
.testimonial-name { font-family: var(--font-serif); font-size: 1rem; color: var(--primary); line-height: 1.2; }
.testimonial-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(58,36,32,0.5); }
.testimonial-stars { margin-top: 0.75rem; color: var(--accent); }
.testimonial-text { margin-top: 1rem; font-size: 0.875rem; line-height: 1.7; color: rgba(58,36,32,0.75); }

/* ---------- Signs ---------- */
.section { padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .section { padding-top: 8rem; padding-bottom: 8rem; } }
.section-head { max-width: 42rem; margin-bottom: 4rem; }
.section-head h2 { margin-top: 1rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
.section-head p { margin-top: 1.5rem; max-width: 36rem; color: rgba(58,36,32,0.7); line-height: 1.7; }

.signs-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .signs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .signs-grid { grid-template-columns: repeat(3, 1fr); } }
.sign-card { border-radius: 1rem; border: 1px solid rgba(58,36,32,0.05); background-color: rgba(243,217,208,0.25); padding: 2rem; transition: background-color 0.2s ease, box-shadow 0.2s ease; }
.sign-card:hover { background-color: rgba(243,217,208,0.4); box-shadow: var(--shadow-soft); }
.sign-num { font-family: var(--font-serif); font-size: 0.875rem; font-style: italic; color: var(--accent); }
.sign-card h3 { margin-top: 0.75rem; font-size: 1.5rem; }
.sign-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(58,36,32,0.7); }

/* ---------- Surgical / NonSurgical ---------- */
.split-section { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .split-section { padding-top: 7rem; padding-bottom: 7rem; } }
.split-section .wrap { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .split-section .wrap { flex-direction: row; align-items: center; gap: 5rem; } }
.split-section.reverse .wrap { flex-direction: column; }
@media (min-width: 1024px) { .split-section.reverse .wrap { flex-direction: row-reverse; } }
.split-media { }
@media (min-width: 1024px) { .split-media { width: 50%; } }
.split-copy { margin-top: 3rem; }
@media (min-width: 1024px) { .split-copy { margin-top: 0; width: 50%; } }
.split-copy h2 { margin-top: 1rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .split-copy h2 { font-size: 3rem; } }
.split-copy > p { margin-top: 1.5rem; max-width: 34rem; font-size: 1.125rem; color: rgba(58,36,32,0.8); line-height: 1.6; }
.split-copy ul { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.split-copy li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; line-height: 1.7; }
.split-copy .dot { margin-top: 0.5rem; width: 6px; height: 6px; border-radius: 999px; background-color: var(--accent); flex-shrink: 0; }
.split-copy .cta { margin-top: 2.5rem; }

.gallery-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.gallery-5 img.g-big { grid-column: span 3; aspect-ratio: 3/4; border-radius: 1rem; object-fit: cover; box-shadow: var(--shadow-soft); }
.gallery-5 img.g-small { grid-column: span 2; margin-top: 3rem; aspect-ratio: 3/5; border-radius: 1rem; object-fit: cover; box-shadow: var(--shadow-soft); }
.single-media img { width: 100%; aspect-ratio: 4/5; border-radius: 1rem; object-fit: cover; box-shadow: var(--shadow-soft); }

/* ---------- About (dark) ---------- */
.about-dark { background-color: var(--primary); color: var(--base); padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .about-dark { padding-top: 8rem; padding-bottom: 8rem; } }
.about-dark .wrap { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .about-dark .wrap { flex-direction: row; align-items: center; gap: 5rem; } }
.about-dark-media { }
@media (min-width: 1024px) { .about-dark-media { width: 40%; } }
.about-dark-media img { width: 100%; aspect-ratio: 4/5; border-radius: 1rem; object-fit: cover; }
.about-dark-copy { margin-top: 3rem; }
@media (min-width: 1024px) { .about-dark-copy { margin-top: 0; width: 60%; } }
.about-dark-copy h2 { margin-top: 1rem; font-size: 2.25rem; color: var(--base); }
@media (min-width: 768px) { .about-dark-copy h2 { font-size: 3rem; } }
.about-dark-copy .role { margin-top: 0.5rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(253,246,243,0.6); }
.about-dark-copy .body { margin-top: 2rem; max-width: 36rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1.125rem; line-height: 1.7; color: rgba(253,246,243,0.85); }
.about-stats { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
.about-stat { display: flex; flex-direction: column; }
.about-stat .n { font-family: var(--font-serif); font-size: 1.875rem; color: var(--base); }
.about-stat .l { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(253,246,243,0.55); }
.about-stat-sep { height: 3rem; width: 1px; background-color: rgba(253,246,243,0.15); }

/* ---------- Credentials ---------- */
.credentials { background-color: var(--base); padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .credentials { padding-top: 7rem; padding-bottom: 7rem; } }
.credentials-box { border-radius: 1rem; border: 1px solid rgba(58,36,32,0.05); background-color: rgba(243,217,208,0.25); padding: 2rem; }
@media (min-width: 768px) { .credentials-box { padding: 2.5rem; } }
.credentials-box h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(58,36,32,0.7); }
.credentials-box h3 svg { width: 1rem; height: 1rem; }
.credentials-list { display: grid; gap: 1rem; font-size: 0.875rem; line-height: 1.7; color: rgba(58,36,32,0.8); }
@media (min-width: 768px) { .credentials-list { grid-template-columns: repeat(2, 1fr); } }
.credentials-list li { display: flex; gap: 0.5rem; }
.credentials-list li.full { grid-column: 1 / -1; }
.credentials-list .dot { margin-top: 0.4rem; width: 6px; height: 6px; border-radius: 999px; background-color: var(--accent); flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-list-wrap { }
.faq-item-border { border-top: 1px solid rgba(58,36,32,0.1); }
.faq-item-border:last-child { border-bottom: 1px solid rgba(58,36,32,0.1); }
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(58,36,32,0.15);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.faq-icon svg { width: 1rem; height: 1rem; }
.faq-item-border.open .faq-icon { transform: rotate(180deg); background-color: var(--accent); color: var(--base); }
.faq-a { display: none; max-width: 56ch; padding-bottom: 1.25rem; font-size: 0.875rem; line-height: 1.7; color: rgba(58,36,32,0.7); }
.faq-item-border.open .faq-a { display: block; }

.faq-q-alt {
  display: block;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  transition: background-color 0.2s ease;
}
.faq-q-alt:hover { background-color: rgba(243,217,208,0.2); }
.faq-q-alt-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding-left: 0.5rem; padding-right: 0.5rem; }
.faq-q-alt-row span.q { font-family: var(--font-serif); font-size: 1.125rem; color: var(--primary); }
@media (min-width: 768px) { .faq-q-alt-row span.q { font-size: 1.25rem; } }
.faq-q-alt-row span.plus { margin-top: 0.25rem; color: var(--accent); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item2.open .plus { transform: rotate(45deg); }
.faq-a-alt { display: none; margin-top: 0.75rem; padding-left: 0.5rem; padding-right: 0.5rem; max-width: none; line-height: 1.7; color: rgba(58,36,32,0.7); }
.faq-item2.open .faq-a-alt { display: block; }

/* ---------- Clinic space ---------- */
.clinic-section .wrap { }
.clinic-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .clinic-grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 4rem; } }
.clinic-imgs { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.clinic-imgs img { width: 100%; aspect-ratio: 4/5; border-radius: 1rem; object-fit: cover; box-shadow: var(--shadow-soft); }
.clinic-imgs img.offset { margin-top: 3rem; }
.clinic-copy { display: flex; flex-direction: column; gap: 1.5rem; color: rgba(58,36,32,0.8); font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .clinic-copy { font-size: 1.125rem; } }
.clinic-perks { border-radius: 1rem; background-color: var(--primary); padding: 1.5rem; color: var(--base); }
@media (min-width: 768px) { .clinic-perks { padding: 2rem; } }
.clinic-perks .label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent); }
.clinic-perks ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgba(253,246,243,0.9); }
@media (min-width: 768px) { .clinic-perks ul { font-size: 1rem; } }
.clinic-perks li { display: flex; gap: 0.75rem; }
.clinic-perks .dot { margin-top: 0.5rem; width: 6px; height: 6px; flex-shrink: 0; border-radius: 999px; background-color: var(--accent); }

/* ---------- Final CTA ---------- */
.final-cta-box { border-radius: 1.5rem; background-color: rgba(243,217,208,0.6); padding: 4rem 2rem; text-align: center; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .final-cta-box { padding: 6rem 4rem; } }
.final-cta-box h2 { margin: 1.5rem auto 0; max-width: 42rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .final-cta-box h2 { font-size: 3.75rem; } }
.final-cta-box p { margin: 1.5rem auto 0; max-width: 40rem; color: rgba(58,36,32,0.7); line-height: 1.7; }
.final-cta-box .btn-whatsapp { margin-top: 2.5rem; }
.final-cta-box .note { margin-top: 1.5rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(58,36,32,0.45); }

.final-cta-plain { position: relative; overflow: hidden; background-color: rgba(243,217,208,0.4); padding: 6rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .final-cta-plain { padding: 8rem 1.5rem; } }
.final-cta-plain h2 { margin: 1.5rem auto 0; max-width: 42rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .final-cta-plain h2 { font-size: 3.75rem; } }
.final-cta-plain p { margin: 1.5rem auto 0; max-width: 40rem; color: rgba(58,36,32,0.7); line-height: 1.7; }
.final-cta-plain .btn-whatsapp { margin-top: 2.5rem; }
.final-cta-plain .note { margin-top: 1.5rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(58,36,32,0.45); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(58,36,32,0.1); background-color: var(--base); padding: 3rem 1.5rem; text-align: center; color: rgba(58,36,32,0.5); }
.site-footer .wrap { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer .brand { font-family: var(--font-serif); font-size: 1.125rem; color: rgba(58,36,32,0.7); }
.site-footer .sub { font-size: 0.75rem; }
.site-footer .copy { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; }

/* ---------- Floating WhatsApp ---------- */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}
@media (min-width: 768px) { .wa-fab { width: 4rem; height: 4rem; } }
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 1.75rem; height: 1.75rem; }
@media (min-width: 768px) { .wa-fab svg { width: 2rem; height: 2rem; } }

/* ---------- Specialty page ---------- */
.spec-hero { position: relative; overflow: hidden; padding-top: 6rem; }
.spec-hero-bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom right, rgba(243,217,208,0.6), var(--base) 60%, var(--base)); }
.spec-hero .wrap { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .spec-hero .wrap { padding-top: 6rem; padding-bottom: 6rem; } }
.spec-hero h1 { margin-top: 1.25rem; max-width: 48rem; font-size: 2.75rem; line-height: 1.05; }
@media (min-width: 768px) { .spec-hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .spec-hero h1 { font-size: 4.5rem; } }
.spec-hero-lead { margin-top: 2rem; max-width: 58ch; font-size: 1rem; line-height: 1.7; color: rgba(58,36,32,0.8); }
@media (min-width: 768px) { .spec-hero-lead { font-size: 1.125rem; } }
.spec-hero-meta { margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(58,36,32,0.5); }

.spec-about { border-top: 1px solid rgba(58,36,32,0.05); border-bottom: 1px solid rgba(58,36,32,0.05); background-color: var(--base); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .spec-about { padding: 7rem 1.5rem; } }
.spec-about-grid { margin: 0 auto; max-width: 72rem; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .spec-about-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }
.spec-about-grid h2 { margin-top: 1.5rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .spec-about-grid h2 { font-size: 3rem; } }
.spec-about-body { display: flex; flex-direction: column; gap: 1.5rem; line-height: 1.7; color: rgba(58,36,32,0.8); }
@media (min-width: 768px) { .spec-about-body { font-size: 1.125rem; } }

.spec-indications { background-color: rgba(243,217,208,0.3); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .spec-indications { padding: 7rem 1.5rem; } }
.indications-grid { margin: 0 auto; max-width: 72rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .indications-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .indications-grid { grid-template-columns: repeat(3, 1fr); } }
.indication-card { border-radius: 1rem; border: 1px solid rgba(58,36,32,0.1); background-color: var(--base); padding: 1.5rem; box-shadow: var(--shadow-soft); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.indication-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-cta); }
.indication-icon { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; border-radius: 999px; background-color: rgba(184,115,106,0.1); color: var(--accent); }
.indication-icon svg { width: 1.25rem; height: 1.25rem; }
.indication-card h3 { font-size: 1.25rem; }
.indication-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(58,36,32,0.7); }

.spec-process { background-color: var(--base); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .spec-process { padding: 7rem 1.5rem; } }
.process-grid { margin: 0 auto; max-width: 72rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
.process-card { border-radius: 1rem; border: 1px solid rgba(58,36,32,0.1); background-color: rgba(243,217,208,0.3); padding: 2rem; }
.process-card .step-n { font-family: var(--font-serif); font-size: 3rem; color: rgba(184,115,106,0.7); }
.process-card h3 { margin-top: 1rem; font-size: 1.5rem; }
.process-card p { margin-top: 0.75rem; line-height: 1.7; color: rgba(58,36,32,0.7); }

.spec-benefits { background-color: rgba(243,217,208,0.3); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .spec-benefits { padding: 7rem 1.5rem; } }
.benefits-grid { margin: 0 auto; max-width: 72rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { border-radius: 1rem; background-color: var(--base); padding: 2rem; text-align: center; box-shadow: var(--shadow-soft); }
.benefit-card svg { margin: 0 auto; width: 1.75rem; height: 1.75rem; color: var(--accent); }
.benefit-card h3 { margin-top: 1rem; font-size: 1.25rem; }
.benefit-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(58,36,32,0.7); }

.spec-doctor { background-color: var(--primary); color: var(--base); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .spec-doctor { padding: 7rem 1.5rem; } }
.spec-doctor-grid { margin: 0 auto; max-width: 72rem; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .spec-doctor-grid { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 4rem; } }
.spec-doctor-grid img { width: 100%; aspect-ratio: 4/5; border-radius: 1.75rem; object-fit: cover; box-shadow: var(--shadow-cta); }
.spec-doctor-grid h2 { margin-top: 1.5rem; font-size: 2.25rem; color: var(--base); }
@media (min-width: 768px) { .spec-doctor-grid h2 { font-size: 3rem; } }
.spec-doctor-grid .role { margin-top: 0.75rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(253,246,243,0.6); }
.spec-doctor-grid .bio { margin-top: 2rem; line-height: 1.7; color: rgba(253,246,243,0.85); }
@media (min-width: 768px) { .spec-doctor-grid .bio { font-size: 1.125rem; } }
.spec-doctor-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: rgba(253,246,243,0.8); }
.spec-doctor-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.spec-doctor-list svg { margin-top: 0.125rem; width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--accent); }
.spec-doctor .btn-white { margin-top: 2.5rem; }

.spec-faq { background-color: var(--base); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .spec-faq { padding: 7rem 1.5rem; } }
.spec-faq-inner { margin: 0 auto; max-width: 48rem; }
.spec-faq-head { text-align: center; margin-bottom: 3rem; }
.spec-faq-head h2 { margin-top: 1.5rem; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .spec-faq-head h2 { font-size: 3rem; } }
.spec-faq-list { border-top: 1px solid rgba(58,36,32,0.1); border-bottom: 1px solid rgba(58,36,32,0.1); }
.spec-faq-list > div + div { border-top: 1px solid rgba(58,36,32,0.1); }

.related-section { background-color: var(--base); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .related-section { padding: 6rem 1.5rem; } }
.related-inner { margin: 0 auto; max-width: 72rem; }
.related-head { margin-bottom: 2.5rem; }
.related-head h2 { margin-top: 1rem; font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .related-head h2 { font-size: 2.25rem; } }
.related-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }
.related-card { display: block; border-radius: 1rem; border: 1px solid rgba(58,36,32,0.1); background-color: rgba(243,217,208,0.3); padding: 1.5rem; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.related-card:hover { transform: translateY(-4px); border-color: rgba(184,115,106,0.4); box-shadow: var(--shadow-cta); }
.related-card .tag { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent); }
.related-card h3 { margin-top: 0.75rem; font-size: 1.25rem; color: var(--primary); }
.related-card:hover h3 { color: var(--accent); }
.related-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(58,36,32,0.65); }
.related-card .more { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(58,36,32,0.6); }
.related-card:hover .more { color: var(--accent); }

svg { width: 1em; height: 1em; flex-shrink: 0; }
.icon { display: inline-block; }
