:root {
  --wine: #486c5c;
  --wine-deep: #203c32;
  --rose: #d6dfd8;
  --rose-soft: #f3f6f1;
  --blush: #e9efe9;
  --gold: #c7a16c;
  --ink: #172c24;
  --text: #53645b;
  --muted: #7c8c83;
  --line: #d7e1d9;
  --green: #25d366;
  --white: #fff;
  --shadow-soft: 0 18px 48px rgba(23, 44, 36, .12);
  --shadow-float: 0 18px 34px rgba(23, 44, 36, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: -0.015em;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: #fff; background: var(--wine); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: 80px;
  padding: 18px clamp(20px, 4vw, 50px) 0;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: start;
  transition: background .3s ease, box-shadow .3s ease, min-height .3s ease, padding .3s ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  padding-top: 14px;
  background: rgba(255, 250, 248, .89);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(23, 44, 36, .08);
}

.brand {
  width: max-content;
  min-width: 220px;
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "prefix name" "prefix role";
  align-items: center;
  column-gap: 8px;
  line-height: 1;
  transition: color .3s ease;
}
.site-header.is-scrolled .brand { color: var(--wine-deep); }
.brand__prefix {
  grid-area: prefix;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: .88;
}
.brand__name {
  grid-area: name;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: .83;
  font-weight: 700;
  letter-spacing: -.055em;
}
.brand__role {
  grid-area: role;
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .84;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  padding-top: 8px;
}
.desktop-nav a {
  color: rgba(255,255,255,.78);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .045em;
  transition: color .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: #fff; }
.site-header.is-scrolled .desktop-nav a { color: rgba(23,44,36,.56); }
.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active { color: var(--wine); }

.header-cta {
  min-width: 178px;
  padding: 4px 0 10px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease;
}
.site-header.is-scrolled .header-cta { color: var(--wine); border-color: rgba(72,108,92,.36); }

.menu-toggle { display: none; border: 0; background: transparent; }
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 49;
  padding: 16px;
  border: 1px solid rgba(72,108,92,.14);
  border-radius: 22px;
  background: rgba(255,250,248,.96);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a { display: block; padding: 15px 10px; color: var(--ink); font-size: 13px; font-weight: 800; border-bottom: 1px solid rgba(23,44,36,.07); }
.mobile-menu a:last-child { border-bottom: 0; }

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media, .hero__overlay { position: absolute; inset: 0; z-index: -2; }
.hero__media {
  background: url('../assets/img/hero.webp') 68% 36% / cover no-repeat;
  transform: scale(1.015);
}
.hero__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 81% 24%, rgba(215,226,216,.24), rgba(215,226,216,0) 31%),
    linear-gradient(90deg, rgba(23,44,36,.88) 0%, rgba(23,44,36,.61) 38%, rgba(95,55,48,.16) 70%, rgba(0,0,0,.05) 100%),
    linear-gradient(0deg, rgba(16,38,31,.45) 0%, rgba(16,38,31,.08) 48%, rgba(16,38,31,0) 100%);
}
.hero__content {
  width: min(720px, calc(100% - 42px));
  margin-left: clamp(22px, 5vw, 56px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--wine);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .09em;
}
.eyebrow--light { color: #fff; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.1rem, 8.4vw, 6.9rem);
  line-height: .8;
  letter-spacing: -.07em;
  font-weight: 600;
}
.hero__lead {
  max-width: 560px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.89);
  font-size: clamp(.92rem, 1.4vw, 1.04rem);
  line-height: 1.52;
  letter-spacing: -.015em;
}
.hero__actions, .button-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero__phone { color: rgba(255,255,255,.93); font-size: 13px; font-weight: 700; }
.hero__signature {
  position: absolute;
  right: clamp(22px, 5.5vw, 78px);
  bottom: clamp(40px, 7vw, 92px);
  width: 182px;
  padding: 16px 17px 14px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.hero__signature strong { display: block; font-size: 13px; line-height: 1.18; }
.hero__signature span { display: block; margin-top: 7px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.82); }

.section { position: relative; padding: clamp(82px, 10vw, 128px) clamp(20px, 4vw, 50px); }
.section--muted { background: var(--blush); }
.section--soft { background: linear-gradient(180deg, #fff 0%, #f4f7f3 100%); }
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.07em;
}
h3 { margin: 0; color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.85rem, 2.6vw, 2.6rem); line-height: .9; letter-spacing: -.055em; }
p { color: var(--text); line-height: 1.6; }
.btn {
  position: relative;
  min-height: 43px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  isolation: isolate;
}
.btn:hover { transform: translateY(-1px); }
.btn span { transition: transform .22s ease; }
.btn:hover span { transform: translateX(3px); }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.55), transparent 36%);
  transition: opacity .28s ease;
}
.btn:hover::before { opacity: .75; }
.btn--primary { color: #fff; background: var(--wine); border: 1px solid var(--wine); box-shadow: 0 10px 22px rgba(72,108,92,.2); }
.btn--primary:hover { background: var(--wine-deep); border-color: var(--wine-deep); }
.btn--outline { color: var(--ink); background: #fff; border: 1px solid rgba(23,44,36,.85); }
.btn--outline::before { background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(72,108,92,.14), transparent 40%); }
.btn--white { color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.88); box-shadow: 0 10px 22px rgba(0,0,0,.16); }
.btn--whatsapp { color: #fff; background: var(--green); border: 1px solid var(--green); box-shadow: 0 10px 22px rgba(37,211,102,.24); }

.about {
  min-height: 745px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.about__content { position: relative; z-index: 2; width: min(510px, 100%); margin: 0 auto; text-align: center; }
.about__content p:not(.eyebrow) { max-width: 470px; margin: 23px auto 0; font-size: 14px; }
.about .button-row { justify-content: center; margin-top: 38px; }
.about__floating {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 23px;
  box-shadow: var(--shadow-float);
  isolation: isolate;
}
.about__floating img { width: 100%; height: 100%; object-fit: cover; }
.about__floating--one { top: 105px; left: clamp(32px, 9vw, 130px); width: clamp(168px, 20vw, 294px); transform: rotate(-9deg); }
.about__floating--two { bottom: 108px; left: clamp(28px, 6.8vw, 94px); width: clamp(150px, 16vw, 250px); transform: rotate(7deg); }
.about__floating--three { top: 128px; right: clamp(36px, 9vw, 134px); width: clamp(168px, 20vw, 310px); transform: rotate(8deg); }
.about__floating--four { bottom: 112px; right: clamp(30px, 6.5vw, 90px); width: clamp(150px, 15vw, 250px); transform: rotate(-7deg); }

.section-intro {
  width: min(1320px, 100%);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .72fr);
  align-items: end;
  gap: clamp(36px, 8vw, 150px);
}
.section-intro h2 { max-width: 790px; }
.section-intro__side { margin: 0; font-size: 14px; }
.section-intro__side p { margin: 0; }
.section-intro__side .btn { margin-top: 24px; }
.cards-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, 1fr);
  gap: 16px;
}
.treatment-card {
  min-height: 245px;
  padding: 26px 26px 23px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(72,108,92,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  transition: transform .28s ease, box-shadow .28s ease;
}
.treatment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.treatment-card > span { margin-bottom: auto; color: var(--wine); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.treatment-card p { margin: 16px 0 0; font-size: 13px; line-height: 1.55; }
.treatment-card--accent { color: #fff; background: var(--wine); border-color: var(--wine); }
.treatment-card--accent h3, .treatment-card--accent > span, .treatment-card--accent p { color: #fff; }
.treatment-card--accent p { color: rgba(255,255,255,.84); }
.image-card { min-height: 245px; overflow: hidden; border-radius: 22px; isolation: isolate; }
.image-card img { width: 100%; height: 100%; object-fit: cover; }

.experience {
  width: min(1450px, 100%);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 50px);
  padding-right: clamp(20px, 4vw, 50px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: clamp(36px, 8vw, 126px);
}
.experience__visual { position: relative; min-height: 540px; overflow: hidden; border-radius: 30px; isolation: isolate; }
.experience__visual img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.experience__badge { position: absolute; left: 24px; bottom: 24px; width: min(250px, calc(100% - 48px)); padding: 17px; border: 1px solid rgba(255,255,255,.38); border-radius: 18px; color: #fff; background: rgba(23,44,36,.36); backdrop-filter: blur(12px); }
.experience__badge strong { display: block; font-size: 14px; }
.experience__badge span { display: block; margin-top: 7px; font-size: 12px; line-height: 1.45; color: rgba(255,255,255,.83); }
.experience__content > p:not(.eyebrow) { max-width: 490px; margin: 24px 0 0; font-size: 14px; }
.feature-list { display: grid; gap: 14px; margin-top: 30px; }
.feature-list div { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 13px; font-weight: 700; }
.feature-list span { width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 5px rgba(72,108,92,.1); }

.gallery { overflow: hidden; }
.structure__intro { width: min(1320px, 100%); margin: 0 auto 44px; }
.structure__intro h2 { max-width: 710px; }
.gallery-grid { width: min(1320px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 220px; gap: 16px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 22px; isolation: isolate; }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid__large { grid-row: span 2; }
.gallery-grid figure:nth-child(2) { grid-column: span 2; }

.doctor {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding-left: clamp(20px, 7vw, 120px);
  padding-right: clamp(20px, 7vw, 120px);
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(360px, .75fr);
  gap: clamp(48px, 10vw, 180px);
  align-items: center;
}
.doctor__content > p:not(.eyebrow) { max-width: 500px; margin: 25px 0 0; font-size: 14px; }
.doctor__meta { display: grid; gap: 5px; margin-top: 30px; }
.doctor__meta strong { color: var(--wine); font-size: 16px; }
.doctor__meta span { color: var(--ink); font-size: 13px; font-weight: 700; }
.doctor__meta small { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.doctor__photo { min-height: 540px; overflow: hidden; border-radius: 28px; background: var(--rose-soft); isolation: isolate; }
.doctor__photo img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: center top; }

.differentials .section-intro { margin-bottom: 42px; }
.testimonial-grid { width: min(1320px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.testimonial-card { min-height: 238px; padding: 28px; display: flex; flex-direction: column; border-radius: 22px; background: #fff; border: 1px solid rgba(72,108,92,.1); transition: transform .28s ease, box-shadow .28s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: .14em; }
.testimonial-card p { margin: 28px 0 auto; font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; line-height: .98; letter-spacing: -.045em; color: var(--ink); }
.testimonial-card span { margin-top: 25px; color: var(--wine); text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .08em; }

.contact { background: #fff; }
.contact__panel { position: relative; width: min(1320px, 100%); min-height: 510px; margin: 0 auto; display: flex; align-items: center; overflow: hidden; border-radius: 30px; isolation: isolate; }
.contact__image, .contact__overlay { position: absolute; inset: 0; z-index: -2; }
.contact__image { background: url('../assets/img/contact.webp') 50% 46% / cover no-repeat; }
.contact__overlay { z-index: -1; background: linear-gradient(90deg, rgba(45,25,25,.88) 0%, rgba(45,25,25,.66) 42%, rgba(40,72,60,.12) 74%, rgba(0,0,0,.02) 100%), linear-gradient(0deg, rgba(16,38,31,.38), rgba(0,0,0,0) 68%); }
.contact__content { width: min(610px, 100%); padding: clamp(34px, 6vw, 80px); }
.contact__content h2 { color: #fff; max-width: 580px; }
.contact__content > p:not(.eyebrow) { max-width: 490px; margin: 24px 0 0; color: rgba(255,255,255,.88); font-size: 14px; }
.contact-card { width: min(1320px, 100%); margin: 18px auto 0; padding: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; border-radius: 22px; background: var(--rose-soft); }
.contact-card div { padding: 0 8px; }
.contact-card span { display: block; margin-bottom: 10px; color: var(--wine); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-card a { color: var(--ink); font-size: 14px; font-weight: 800; }
.contact-card p { margin: 0; color: var(--ink); font-size: 13px; line-height: 1.48; }

.footer { padding: 42px clamp(20px, 4vw, 50px); display: flex; justify-content: space-between; align-items: flex-end; gap: 36px; background: var(--ink); color: #fff; }
.footer-brand { width: max-content; display: grid; grid-template-columns: auto 1fr; grid-template-areas: "prefix name" "prefix role"; column-gap: 8px; align-items: center; line-height: 1; }
.footer-brand span { grid-area: prefix; font-size: 8px; font-weight: 800; letter-spacing: .16em; writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(255,255,255,.74); }
.footer-brand strong { grid-area: name; font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; line-height: .85; letter-spacing: -.055em; }
.footer-brand small { grid-area: role; margin-top: 5px; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.footer p { margin: 16px 0 0; font-size: 12px; color: rgba(255,255,255,.67); }
.footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer nav a { color: rgba(255,255,255,.75); font-size: 11px; font-weight: 700; }
.footer nav a:hover { color: #fff; }

.floating-whatsapp { position: fixed; right: 20px; bottom: 22px; z-index: 44; width: 52px; height: 52px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 999px; box-shadow: 0 14px 28px rgba(37,211,102,.3); transition: transform .22s ease; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal--delay { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.cursor { position: fixed; left: 0; top: 0; z-index: 120; width: 36px; height: 36px; pointer-events: none; border: 1px solid rgba(72,108,92,.44); border-radius: 999px; mix-blend-mode: multiply; transform: translate3d(-50%, -50%, 0); opacity: 0; transition: opacity .2s ease, width .22s ease, height .22s ease, border-color .22s ease, background .22s ease; }
.cursor span { position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; border-radius: 999px; transform: translate(-50%, -50%); background: var(--wine); }
.cursor.is-visible { opacity: 1; }
.cursor.is-active { width: 62px; height: 62px; border-color: rgba(196,163,104,.75); background: rgba(196,163,104,.12); }

.about__floating::after, .image-card::after, .gallery-grid figure::after, .experience__visual::after, .doctor__photo::after, .contact__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0) 22%, rgba(255,255,255,.33) 42%, rgba(255,255,255,0) 58%);
  transform: translateX(-135%) skewX(-18deg);
  opacity: .62;
}
.about__floating:hover::after, .image-card:hover::after, .gallery-grid figure:hover::after, .experience__visual:hover::after, .doctor__photo:hover::after, .contact__panel:hover::after { animation: photoSheen 1.1s cubic-bezier(.22,1,.36,1); }
@keyframes photoSheen { to { transform: translateX(135%) skewX(-18deg); } }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 234px 1fr auto; }
  .desktop-nav { gap: 24px; }
  .about__floating--one { left: 28px; }
  .about__floating--two { left: 24px; }
  .about__floating--three { right: 28px; }
  .about__floating--four { right: 24px; }
  .doctor { grid-template-columns: minmax(0, .95fr) minmax(330px, .85fr); gap: 56px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 70px; padding: 14px 14px 0 20px; grid-template-columns: 198px 1fr 44px; }
  .site-header.is-scrolled { min-height: 64px; padding-top: 11px; }
  .desktop-nav, .header-cta { display: none; }
  .brand { min-width: 0; }
  .brand__name { font-size: 30px; }
  .menu-toggle { position: relative; width: 40px; height: 40px; justify-self: end; display: block; padding: 0; }
  .menu-toggle span { position: absolute; left: 50%; top: 50%; width: 19px; height: 1.6px; border-radius: 999px; background: #fff; transform-origin: center; transition: transform .25s ease, opacity .2s ease, background .25s ease; }
  .menu-toggle span:nth-child(1) { transform: translate(-50%, -6px); }
  .menu-toggle span:nth-child(2) { transform: translate(-50%, 0); }
  .menu-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: translate(-50%, 0) scaleX(.2); }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }
  .site-header.is-scrolled .menu-toggle span { background: var(--wine); }

  .hero { min-height: 760px; align-items: center; }
  .hero__content { margin: 0 20px; width: calc(100% - 40px); }
  .hero h1 { font-size: clamp(4rem, 12vw, 6.6rem); }
  .hero__signature { left: 20px; right: auto; bottom: 36px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(23,44,36,.88), rgba(23,44,36,.57) 60%, rgba(0,0,0,.08)), linear-gradient(0deg, rgba(16,38,31,.55), rgba(0,0,0,.08) 66%, rgba(0,0,0,0)); }

  .about { min-height: auto; padding: 96px 20px 104px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-areas: "img-one img-three" "content content" "img-two img-four"; gap: 18px 16px; overflow: visible; }
  .about__content { grid-area: content; width: min(520px, 100%); margin: 28px auto 26px; }
  .about__floating { position: relative; inset: auto; width: 100%; max-width: none; aspect-ratio: 4/3; }
  .about__floating--one { grid-area: img-one; transform: rotate(-4deg); }
  .about__floating--three { grid-area: img-three; margin-top: 30px; transform: rotate(4deg); }
  .about__floating--two { grid-area: img-two; margin-top: 10px; transform: rotate(3deg); }
  .about__floating--four { grid-area: img-four; margin-top: 38px; transform: rotate(-4deg); }

  .section-intro, .experience, .doctor { grid-template-columns: 1fr; gap: 35px; }
  .section-intro { margin-bottom: 38px; }
  .section-intro__side { max-width: 520px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .experience { width: 100%; padding-top: 84px; padding-bottom: 84px; }
  .experience__visual { min-height: 460px; }
  .experience__visual img { min-height: 460px; }
  .doctor { width: 100%; padding-top: 84px; padding-bottom: 84px; }
  .doctor__photo, .doctor__photo img { min-height: 460px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; gap: 18px; }
  .gallery-grid__large { grid-column: span 2; grid-row: span 1; }
  .gallery-grid figure:nth-child(2) { grid-column: auto; }
  .testimonial-grid, .contact-card { grid-template-columns: 1fr 1fr; }
  .contact-card div:last-child { grid-column: span 2; }
}

@media (max-width: 560px) {
  .site-header { grid-template-columns: 180px 1fr 40px; padding-right: 8px; }
  .brand__name { font-size: 28px; }
  .brand__role { font-size: 7px; }
  .hero { min-height: 720px; }
  .hero__media { background-position: 58% center; }
  .hero h1 { font-size: clamp(3.85rem, 17vw, 5.85rem); }
  .hero__lead { margin-top: 20px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__signature { width: 165px; bottom: 26px; }
  .section { padding-left: 18px; padding-right: 18px; }
  h2 { font-size: clamp(3.1rem, 15vw, 4.65rem); }
  .about { padding: 78px 18px 88px; gap: 16px 14px; }
  .about__content { margin: 20px auto 20px; }
  .about__content h2 { font-size: clamp(3.18rem, 15vw, 4.5rem); }
  .about__content p:not(.eyebrow) { font-size: 13px; }
  .button-row { flex-direction: column; align-items: flex-start; }
  .btn { min-width: 190px; }
  .cards-grid, .testimonial-grid, .gallery-grid, .contact-card { grid-template-columns: 1fr; }
  .cards-grid { gap: 14px; }
  .treatment-card, .image-card { min-height: 230px; }
  .gallery-grid { grid-auto-rows: 260px; gap: 16px; }
  .gallery-grid__large { grid-column: auto; }
  .gallery-grid figure:nth-child(2) { grid-column: auto; }
  .experience__visual, .experience__visual img, .doctor__photo, .doctor__photo img { min-height: 360px; height: 360px; }
  .contact__panel { min-height: 610px; align-items: flex-end; border-radius: 26px; }
  .contact__content { padding: 34px 26px; }
  .contact__content h2 { font-size: clamp(3rem, 14.8vw, 4.4rem); }
  .contact-card div:last-child { grid-column: auto; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (hover: none), (pointer: coarse), (max-width: 820px) { .cursor { display: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.floating-whatsapp {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

/* Ajustes de enquadramento para preservar melhor os rostos nas fotos */
.hero__media { background-position: 72% 22%; }

.about__floating img { object-position: center 24%; }
.about__floating--two img { object-position: center 18%; }
.about__floating--three img { object-position: center 14%; }
.about__floating--four img { object-position: center 18%; }

.experience__visual img { object-position: center 20%; }
.gallery-grid { grid-auto-rows: 250px; }
.gallery-grid figure img { object-position: center 18%; }
.gallery-grid__large img { object-position: center 24%; }
.gallery-grid figure:nth-child(2) img { object-position: center 12%; }
.gallery-grid figure:nth-child(4) img { object-position: center 14%; }
.gallery-grid figure:nth-child(5) img { object-position: center 20%; }

.doctor__photo img { object-position: center 14%; }
.contact__image { background-position: 50% 22%; }

@media (max-width: 820px) {
  .hero__media { background-position: 66% 24%; }
  .gallery-grid { grid-auto-rows: 240px; }
}

@media (max-width: 560px) {
  .hero__media { background-position: 62% 22%; }
  .gallery-grid { grid-auto-rows: 300px; }
  .experience__visual,
  .experience__visual img,
  .doctor__photo,
  .doctor__photo img {
    min-height: 400px;
    height: 400px;
  }
  .contact__image { background-position: 58% 24%; }
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.footer__developer {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: opacity .22s ease, transform .22s ease;
}
.footer__developer:hover {
  color: rgba(255,255,255,.86);
  transform: translateY(-2px);
}
.footer__developer img {
  display: block;
  width: 142px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 560px) {
  .footer__right { align-items: flex-start; gap: 20px; }
  .footer__developer { justify-content: flex-start; }
}
