:root {
  --ink: #4f3c33;
  --ink-strong: #2f211b;
  --green: #a68a7a;
  --green-deep: #6f5547;
  --teal: #b99d8d;
  --sage: #e6dbb8;
  --clay: #a68a7a;
  --paper: #f7f4f1;
  --paper-2: #dcc9be;
  --white: #ffffff;
  --muted: #6f5547;
  --muted-strong: #5d473c;
  --line: rgba(111, 85, 71, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(111, 85, 71, 0.16);
  --shadow-soft: 0 14px 34px rgba(111, 85, 71, 0.1);
  --shadow-lift: 0 22px 54px rgba(111, 85, 71, 0.16);
  --font-display: "Avenir Next", "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Montserrat", "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 300;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(247, 244, 241, 0.9);
  border-bottom: 1px solid rgba(111, 85, 71, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-elevated {
  background: rgba(247, 244, 241, 0.96);
  border-color: rgba(111, 85, 71, 0.16);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 226px;
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(230, 219, 184, 0.18);
  background: var(--green-deep);
  box-shadow: 0 10px 22px rgba(111, 85, 71, 0.16);
}

.brand-mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  transform: translateY(-2px);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 600;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #70594d;
  font-size: 14px;
  font-weight: 400;
}

.nav a {
  position: relative;
  padding-block: 6px;
  transition: color 0.2s ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-deep);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--green);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 13px;
}

.btn {
  padding: 0 22px;
  font-size: 14px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(166, 138, 122, 0.34);
}

.btn-ghost {
  border: 1px solid rgba(111, 85, 71, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(111, 85, 71, 0.24);
}

.btn-ghost:hover {
  border-color: rgba(111, 85, 71, 0.32);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.header-cta svg,
.btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.9;
}

.section,
.final-cta {
  position: relative;
  padding: clamp(68px, 8vw, 112px) 0;
}

main > section:not(.hero) {
  position: relative;
  overflow: hidden;
}

main > section:not(.hero)::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 40px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(111, 85, 71, 0.24), transparent);
  transform: translateX(-50%);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, #6f5547 0%, #7f6659 54%, #a68a7a 100%);
}

.section-dark::before,
.quick-proof::before,
.doctor-section::before {
  background: linear-gradient(90deg, transparent, rgba(230, 219, 184, 0.28), transparent);
}

main > section:not(.hero)::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(111, 85, 71, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(111, 85, 71, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.34;
}

main > section:not(.hero) > * {
  position: relative;
  z-index: 1;
}

.section-dark::after,
.quick-proof::after,
.doctor-section::after {
  background-image:
    linear-gradient(90deg, rgba(230, 219, 184, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(230, 219, 184, 0.05) 1px, transparent 1px);
  opacity: 0.22;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100vh - 72px));
  overflow: hidden;
  color: var(--ink);
  background: #f7f4f1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  opacity: 0.76;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1.4px) saturate(0.92);
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 70% 54%, rgba(255, 255, 255, 0.78) 0 18%, rgba(247, 244, 241, 0.6) 38%, rgba(247, 244, 241, 0.28) 62%),
    linear-gradient(90deg, rgba(247, 244, 241, 0.7), rgba(247, 244, 241, 0.52));
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 574px);
  gap: clamp(28px, 3.6vw, 52px);
  align-items: start;
  width: min(1310px, calc(100% - 80px));
  padding-block: 26px 0;
}

.hero-copy {
  max-width: 820px;
  padding-top: clamp(88px, 11.7vh, 122px);
  text-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 13px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #f7f4f1;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.problem .eyebrow,
.chronic-section .eyebrow,
.treatment-section .eyebrow,
.process .eyebrow,
.doctor-section .eyebrow,
.locations .eyebrow,
.faq .eyebrow {
  border-color: rgba(166, 138, 122, 0.22);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.68);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.75vw, 74px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: var(--muted-strong);
  line-height: 1.68;
}

.section-dark p,
.hero p,
.final-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.hero p {
  color: #5d473c;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: clamp(18px, 1.9vw, 21px);
  font-weight: 300;
  line-height: 1.72;
}

.hero-mobile-portrait {
  display: none;
}

.mobile-hero-photo {
  display: none;
}

.hero-mobile-portrait img {
  display: block;
  width: 100%;
  background: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.microcopy {
  margin: 0;
  color: rgba(93, 71, 60, 0.86);
  font-size: 13px;
  font-weight: 300;
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 740px;
  overflow: visible;
}

.hero-visual::before {
  display: none;
}

.hero-portrait {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: min(100%, 574px);
  height: 740px;
  overflow: hidden;
  border: 1px solid rgba(111, 85, 71, 0.14);
  border-radius: 8px;
  background: #f1ece7;
  box-shadow: 0 34px 72px rgba(111, 85, 71, 0.18);
  pointer-events: none;
}

.hero-portrait::before {
  display: none;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  background: #f1ece7;
  filter: saturate(1.14) contrast(1.04) brightness(1.03) sepia(0.04);
}

.doctor-id-card {
  position: absolute;
  right: 50%;
  bottom: 140px;
  z-index: 3;
  display: grid;
  gap: 3px;
  width: max-content;
  max-width: 260px;
  padding: 12px 16px;
  border: 1px solid rgba(111, 85, 71, 0.16);
  border-radius: 8px;
  color: var(--ink-strong);
  background: rgba(247, 244, 241, 0.94);
  box-shadow: 0 16px 34px rgba(111, 85, 71, 0.16);
  text-align: center;
  transform: translateX(50%);
}

.doctor-id-card strong {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
}

.doctor-id-card span {
  display: block;
  color: rgba(111, 85, 71, 0.86);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  white-space: normal;
}

.doctor-id-card small {
  display: block;
  color: rgba(93, 71, 60, 0.82);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.hero-card {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(92%, 530px);
  margin-right: 18px;
  margin-bottom: 34px;
  padding: 27px 24px;
  border: 1px solid rgba(111, 85, 71, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 241, 0.76)),
    rgba(247, 244, 241, 0.88);
  box-shadow: 0 22px 48px rgba(111, 85, 71, 0.16);
  backdrop-filter: blur(16px);
}

.hero-card p {
  color: rgba(93, 71, 60, 0.82);
}

.hero-card::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 58px;
  height: 58px;
  content: "";
  border: 1px solid rgba(166, 138, 122, 0.32);
  border-radius: 50%;
  box-shadow: -18px 22px 0 rgba(230, 219, 184, 0.28);
  opacity: 0.72;
}

.hero-doctor-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  text-align: center;
}

.hero-doctor-card > span {
  display: none;
}

.hero-doctor-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(27px, 2.35vw, 34px);
  font-weight: 600;
  line-height: 1;
}

.hero-doctor-card p {
  margin: 0;
  color: rgba(93, 71, 60, 0.84);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.18;
}

.hero-doctor-card small {
  display: block;
  width: fit-content;
  margin-top: 10px;
  margin-inline: auto;
  padding: 5px 9px;
  border: 1px solid rgba(111, 85, 71, 0.16);
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(230, 219, 184, 0.34);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.36;
}

.hero-list svg,
.proof-grid svg,
.concern-grid svg,
.treatment-list svg,
.process-steps svg,
.location-grid svg,
.check-list svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}

.quick-proof {
  position: relative;
  z-index: 4;
  margin-top: 0;
  overflow: visible;
  padding: clamp(26px, 3vw, 42px) 0 clamp(46px, 5.6vw, 76px);
  border: 0;
  background: transparent;
}

.proof-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(28px, 4.4vw, 64px);
  align-items: center;
}

.proof-intro .eyebrow {
  margin-bottom: 16px;
  border-color: rgba(166, 138, 122, 0.22);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.72);
}

.proof-intro h2 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.proof-media {
  overflow: hidden;
  width: min(100%, 340px);
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% 48%;
  filter: saturate(0.96);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.proof-media:hover img {
  filter: saturate(1);
  transform: scale(1.03);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.proof-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  min-height: auto;
  padding: 22px;
  border: 1px solid rgba(111, 85, 71, 0.13);
  border-bottom: 1px solid rgba(111, 85, 71, 0.13);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 241, 0.88));
  box-shadow: 0 18px 42px rgba(111, 85, 71, 0.1);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.proof-grid article::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 44px;
  height: 3px;
  content: "";
  border-radius: 0 0 999px 999px;
  background: var(--green-deep);
  opacity: 0.72;
}

.proof-grid article > div {
  min-width: 0;
}

.proof-grid article:hover {
  border-color: rgba(111, 85, 71, 0.22);
  box-shadow: 0 22px 50px rgba(111, 85, 71, 0.13);
  transform: translateY(-3px);
}

.proof-grid svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(166, 138, 122, 0.2);
  border-radius: 10px;
  color: var(--green-deep);
  background: rgba(230, 219, 184, 0.22);
}

.proof-grid h3 {
  min-width: 0;
  margin: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.proof-grid p {
  min-width: 0;
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  white-space: normal;
  overflow-wrap: break-word;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.section-copy p {
  font-size: 17px;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.concern-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 500;
  box-shadow: 0 10px 28px rgba(111, 85, 71, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.concern-grid span:hover {
  border-color: rgba(111, 85, 71, 0.24);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.concern-grid svg {
  color: var(--clay);
  flex: 0 0 auto;
}

.treatment-section,
.locations {
  background: linear-gradient(180deg, rgba(220, 201, 190, 0.74), rgba(247, 244, 241, 0.92));
}

.problem,
.chronic-section,
.process,
.faq {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(247, 244, 241, 0.84)),
    var(--paper);
}

.chronic-section {
  background:
    linear-gradient(90deg, rgba(247, 244, 241, 0.96) 0%, rgba(247, 244, 241, 0.86) 52%, rgba(220, 201, 190, 0.52) 100%),
    var(--paper);
}

.chronic-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  align-items: start;
}

.chronic-copy .section-bullets {
  max-width: 700px;
}

.problem {
  background:
    linear-gradient(90deg, rgba(247, 244, 241, 0.94) 0%, rgba(247, 244, 241, 0.86) 48%, rgba(220, 201, 190, 0.58) 100%),
    url("assets/consultorio-sem-pessoas-bg-blur.jpg") center / cover no-repeat;
}

.treatment-section {
  background:
    radial-gradient(circle at 84% 30%, rgba(230, 219, 184, 0.42), transparent 30%),
    linear-gradient(90deg, rgba(220, 201, 190, 0.88) 0%, rgba(247, 244, 241, 0.92) 52%, rgba(247, 244, 241, 0.78) 100%),
    url("assets/consultorio-sem-pessoas-bg-blur.jpg") center / cover no-repeat;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  font-size: 17px;
}

.treatment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.treatment-layout-full {
  grid-template-columns: 1fr;
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.treatment-list article,
.treatment-note,
.process-steps article,
.location-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(111, 85, 71, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.treatment-list article:hover,
.process-steps article:hover,
.location-grid article:hover,
.faq-list details:hover {
  border-color: rgba(111, 85, 71, 0.25);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.treatment-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}

.treatment-list article::before,
.process-steps article::before,
.location-grid article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--sage), var(--green));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.treatment-list article:hover::before,
.process-steps article:hover::before,
.location-grid article:hover::before {
  opacity: 1;
}

.treatment-list svg {
  color: var(--green);
}

.treatment-list p,
.treatment-note p,
.process-steps p,
.location-grid p,
.faq-list p {
  margin-bottom: 0;
}

.treatment-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(230, 219, 184, 0.48), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.treatment-note-media {
  overflow: hidden;
  margin: -12px -12px 24px;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
}

.treatment-note-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.treatment-note:hover {
  border-color: rgba(111, 85, 71, 0.25);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.treatment-note:hover .treatment-note-media img {
  filter: saturate(0.96);
  transform: scale(1.04);
}

.treatment-note h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
  counter-reset: step;
}

.process-steps article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  min-height: 118px;
  padding: 22px 92px 22px 24px;
  overflow: hidden;
}

.process-steps span {
  display: block;
  margin: 0;
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
}

.process-steps h3,
.process-steps p {
  grid-column: 2;
}

.process-steps svg {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34px;
  height: 34px;
  color: var(--green);
  transform: translateY(-50%);
}

.doctor-section {
  border-top: 1px solid rgba(230, 219, 184, 0.2);
  border-bottom: 1px solid rgba(230, 219, 184, 0.2);
  background: linear-gradient(135deg, #6f5547 0%, #7e6356 62%, #a68a7a 100%);
  color: var(--white);
}

.doctor-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.doctor-photo {
  overflow: hidden;
  border: 1px solid rgba(230, 219, 184, 0.22);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.doctor-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% 100%;
  transition: transform 0.5s ease;
}

.doctor-photo:hover {
  box-shadow: 0 30px 80px rgba(47, 33, 27, 0.24);
  transform: translateY(-4px);
}

.doctor-photo:hover img {
  transform: scale(1.025);
}

.doctor-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.doctor-copy .doctor-credentials {
  display: inline-block;
  margin-top: 4px;
  color: var(--sage);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.check-list svg {
  color: var(--sage);
}

.section-bullets,
.compact-list {
  margin-top: 0;
}

.section-bullets li,
.compact-list li {
  color: var(--ink);
  line-height: 1.42;
}

.section-bullets svg,
.compact-list svg {
  color: var(--green);
  flex: 0 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  justify-content: center;
}

.location-grid article {
  padding: 26px;
}

.location-grid svg {
  margin-bottom: 18px;
  color: var(--clay);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 24px 24px;
}

.faq-list details[open] {
  border-color: rgba(111, 85, 71, 0.28);
  background:
    linear-gradient(180deg, rgba(230, 219, 184, 0.16), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.faq-list details[open] summary {
  color: var(--green-deep);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.final-grid h2 {
  max-width: 780px;
  margin-inline: auto;
}

.final-grid p {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 0;
}

.final-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(111, 85, 71, 0.94) 0%, rgba(111, 85, 71, 0.88) 52%, rgba(166, 138, 122, 0.82) 100%),
    url("assets/consultorio-sem-pessoas-bg-blur.jpg") center / cover no-repeat;
}

.footer {
  padding: 28px 0;
  background: #6f5547;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.schedule-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.schedule-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 33, 27, 0.46);
  backdrop-filter: blur(7px);
}

.schedule-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(111, 85, 71, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 244, 241, 0.96)),
    var(--paper);
  box-shadow: 0 32px 90px rgba(47, 33, 27, 0.24);
}

.schedule-dialog .eyebrow {
  margin-bottom: 14px;
  border-color: rgba(166, 138, 122, 0.22);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.74);
}

.schedule-dialog h2 {
  max-width: 420px;
  margin-bottom: 10px;
  font-size: clamp(28px, 3.2vw, 40px);
}

.schedule-dialog p {
  max-width: 430px;
  margin-bottom: 22px;
}

.schedule-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(111, 85, 71, 0.16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.schedule-close svg {
  width: 18px;
  height: 18px;
}

.schedule-options {
  display: grid;
  gap: 10px;
}

.schedule-options a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid rgba(111, 85, 71, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.schedule-options a:hover {
  border-color: rgba(111, 85, 71, 0.26);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.schedule-options a:focus-visible,
.schedule-close:focus-visible {
  outline: 2px solid rgba(111, 85, 71, 0.42);
  outline-offset: 3px;
}

.schedule-options svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(166, 138, 122, 0.24);
  border-radius: 10px;
  color: var(--green-deep);
  background: rgba(230, 219, 184, 0.26);
}

.schedule-options strong,
.schedule-options small {
  display: block;
}

.schedule-options strong {
  margin-bottom: 4px;
  color: var(--ink-strong);
  font-size: 17px;
  line-height: 1.2;
}

.schedule-options small {
  color: var(--muted-strong);
  font-size: 13px;
}

body.modal-open {
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.64s ease, transform 0.64s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes clinicDrift {
  0%, 100% {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.025) translate3d(-6px, 4px, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg img {
    animation: clinicDrift 18s ease-in-out infinite;
  }

  .hero-portrait {
    animation: subtleFloat 7s ease-in-out infinite;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .proof-shell {
    grid-template-columns: 1fr;
  }

  .proof-intro h2 {
    max-width: 620px;
  }

  .hero-grid,
  .two-column,
  .chronic-grid,
  .treatment-layout,
  .doctor-grid,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    width: min(1160px, calc(100% - 40px));
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 520px;
    min-height: 560px;
    margin-inline: auto;
    overflow: visible;
  }

  .hero-portrait {
    top: 32px;
    right: 0;
    bottom: auto;
    width: min(100%, 500px);
    height: 520px;
  }

  .hero-card {
    margin-right: 18px;
    margin-bottom: 32px;
  }

  .concern-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid article:last-child {
    width: min(100%, calc((100% - 16px) / 2));
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 62px;
    height: 62px;
  }

  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .header-cta svg {
    display: none;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(32px, 9.2vw, 36px);
  }

  .hero-lead {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.58;
  }

  .microcopy,
  .proof-intro h2 {
    max-width: 330px;
  }

  .hero-grid {
    padding-block: 48px 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 244, 241, 0.9), rgba(247, 244, 241, 0.72));
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-mobile-portrait {
    display: block;
    position: relative;
    height: clamp(420px, 112vw, 560px);
    width: 100%;
    margin: 18px 0 0;
    overflow: hidden;
    border: 1px solid rgba(111, 85, 71, 0.14);
    border-radius: 8px 8px 0 0;
    background: #f1ece7;
    box-shadow: 0 22px 48px rgba(111, 85, 71, 0.14);
  }

  .hero-mobile-portrait::before {
    display: none;
  }

  .hero-mobile-portrait img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 26%;
    filter: saturate(1.14) contrast(1.04) brightness(1.03) sepia(0.04);
  }

  .hero-mobile-portrait .doctor-id-card {
    bottom: 18px;
    z-index: 3;
    max-width: 230px;
    padding: 10px 13px;
    text-align: center;
  }

  .hero-mobile-portrait .doctor-id-card strong {
    font-size: 15px;
  }

  .hero-mobile-portrait .doctor-id-card span {
    font-size: 11px;
  }

  .hero-mobile-portrait .doctor-id-card small {
    font-size: 10px;
  }

  .hero-visual {
    display: none;
  }

  .hero-card {
    display: none;
  }

  .quick-proof {
    margin-top: 0;
    padding: 28px 0 28px;
    background: var(--paper);
  }

  .mobile-hero-photo {
    display: block;
    margin-top: -1px;
    padding: 0 0 18px;
    background: var(--paper);
  }

  .hero-actions,
  .btn,
  .final-grid .btn {
    width: 100%;
  }

  .schedule-dialog {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    padding: 24px 18px 18px;
  }

  .schedule-dialog h2 {
    padding-right: 34px;
    font-size: 28px;
  }

  .schedule-dialog p {
    max-width: 100%;
    font-size: 14px;
  }

  .schedule-close {
    top: 12px;
    right: 12px;
  }

  .schedule-options a {
    min-height: 70px;
    padding: 12px;
  }

  .proof-grid,
  .concern-grid,
  .treatment-list,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-grid article:last-child {
    width: 100%;
    grid-column: auto;
  }

  .proof-grid article,
  .proof-grid article:nth-child(2n),
  .proof-grid article:nth-last-child(-n + 2) {
    grid-template-columns: 38px 1fr;
    gap: 10px 13px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(111, 85, 71, 0.13);
    border-radius: 8px;
  }

  .proof-grid p {
    grid-column: 1 / -1;
    padding-left: 0;
    max-width: none;
    overflow-wrap: anywhere;
  }

  .proof-grid h3 {
    font-size: 16px;
  }

  .proof-grid article:last-child {
    border-bottom: 1px solid rgba(111, 85, 71, 0.13);
  }

  .process-steps article {
    grid-template-columns: 1fr;
    align-items: start;
    padding-right: 72px;
  }

  .process-steps h3,
  .process-steps p {
    grid-column: 1;
  }

  .proof-grid article,
  .process-steps article {
    min-height: auto;
  }

  .treatment-list article {
    grid-template-columns: 34px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
