:root {
  --paper: #f0f0f0;
  --white: #ffffff;
  --mist: #e3d5d5;
  --rose: #cfb4b4;
  --gold: #c4ad76;
  --gold-dark: #9e8652;
  --stone: #6e6666;
  --ink: #262323;
  --shadow: 0 22px 60px rgba(38, 35, 35, 0.13);
  --line: rgba(110, 102, 102, 0.2);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 76px;
  padding: 0 36px;
  color: var(--ink);
  background: rgba(240, 240, 240, 0.58);
  border-bottom: 1px solid rgba(196, 173, 118, 0.18);
  backdrop-filter: blur(20px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(240, 240, 240, 0.78);
  box-shadow: 0 10px 30px rgba(38, 35, 35, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-full img {
  width: 176px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand span {
  display: grid;
  gap: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.9;
}

.brand small {
  color: var(--stone);
  font-size: 0.74rem;
  line-height: 1.1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--stone);
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  padding: 10px 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
}

.main-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86vh;
  padding: 150px 36px 92px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/founders-hero.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(38, 35, 35, 0.7) 0%, rgba(38, 35, 35, 0.42) 46%, rgba(38, 35, 35, 0.06) 100%),
    linear-gradient(180deg, rgba(38, 35, 35, 0.16), rgba(38, 35, 35, 0.5));
}

@media (min-width: 1200px) and (min-aspect-ratio: 16 / 9) {
  .hero-media {
    background-color: var(--ink);
    background-position: left center;
    background-size: auto 100%;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(38, 35, 35, 0.42) 0%, rgba(38, 35, 35, 0.3) 46%, rgba(38, 35, 35, 0.72) 72%, rgba(38, 35, 35, 0.9) 100%),
      linear-gradient(180deg, rgba(38, 35, 35, 0.1), rgba(38, 35, 35, 0.46));
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(560px, 100%);
  max-width: var(--max);
  margin: 0 0 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

.hero h1 {
  max-width: 650px;
  font-size: 5.8rem;
}

.hero-copy {
  max-width: 540px;
  margin: 18px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(38, 35, 35, 0.16);
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -42px auto 0;
  padding: 0 36px;
  position: relative;
  z-index: 5;
}

.intro-strip div {
  min-height: 116px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid rgba(196, 173, 118, 0.22);
  border-right: 0;
  box-shadow: var(--shadow);
}

.intro-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.intro-strip div:last-child {
  border-right: 1px solid rgba(196, 173, 118, 0.22);
  border-radius: 0 8px 8px 0;
}

.intro-strip strong {
  display: block;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.intro-strip span {
  display: block;
  margin-top: 8px;
  color: var(--stone);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 36px;
}

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

.section-heading h2,
.contact-section h2 {
  color: var(--ink);
  font-size: 3.1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  grid-template-rows: auto 1fr;
  column-gap: 52px;
  row-gap: 28px;
  align-items: start;
}

.about-heading {
  grid-column: 1;
  grid-row: 1;
  max-width: 560px;
  margin-bottom: 0;
  padding-left: 32px;
  border-left: 2px solid var(--gold);
}

.about-heading h2 {
  font-size: clamp(3rem, 4vw, 4.15rem);
}

.about-heading h2 span {
  display: block;
}

.about-copy {
  grid-column: 1;
  grid-row: 2;
  padding-left: 32px;
  padding-right: 10px;
  border-left: 2px solid var(--gold);
}

.about-copy p {
  margin: 0 0 28px;
  color: var(--stone);
  font-size: clamp(1.24rem, 1.55vw, 1.48rem);
  line-height: 1.72;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(196, 173, 118, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  mix-blend-mode: multiply;
}

.founders-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  padding: 16px;
}

.founders-card img {
  height: 620px;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 6px;
  mix-blend-mode: normal;
}

.services-section {
  padding-top: 92px;
}

.service-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.service-filter {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--stone);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-filter.active,
.service-filter:hover,
.service-filter:focus-visible {
  color: var(--ink);
  background: rgba(196, 173, 118, 0.18);
  border-color: rgba(196, 173, 118, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.services-grid article {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 76px;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(110, 102, 102, 0.16);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--ink);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  width: 100%;
  padding: 18px;
  color: inherit;
  font: inherit;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.service-card:focus-visible {
  outline: 2px solid rgba(196, 173, 118, 0.8);
  outline-offset: -6px;
}

.service-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(196, 173, 118, 0.8);
  border-radius: 50%;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-description {
  max-height: 0;
  margin: 0 18px;
  overflow: hidden;
  color: var(--stone);
  font-size: 0.94rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 220ms ease, margin 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.services-grid article.is-hidden {
  display: none;
}

.services-grid article.is-open .service-description {
  max-height: 170px;
  margin: -2px 18px 18px;
  opacity: 1;
  transform: translateY(0);
}

.services-grid article.is-open .service-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.services-grid article:hover,
.services-grid article.is-open {
  transform: translateY(-3px);
  border-color: rgba(196, 173, 118, 0.65);
  background: linear-gradient(180deg, var(--white), rgba(227, 217, 213, 0.28));
}

.procedure-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 290px;
  gap: 14px;
  max-width: calc(var(--max) + 120px);
  margin: 0 auto;
  padding: 0 36px 76px;
}

.gallery-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
}

.gallery-tile.large {
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-tile:nth-child(2) img,
.gallery-tile:nth-child(3) img,
.gallery-tile:nth-child(4) img,
.gallery-tile:nth-child(5) img {
  object-position: center;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(38, 35, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
}

.results-section {
  padding-top: 96px;
}

.shell {
  position: relative;
}

.carousel,
.testimonial-carousel {
  position: relative;
}

.carousel-viewport,
.testimonial-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track,
.testimonial-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.result-slide {
  min-width: 100%;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(196, 173, 118, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.result-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  background: var(--mist);
}

.result-slide img.result-contain {
  object-fit: contain;
  background: linear-gradient(135deg, rgba(196, 173, 118, 0.12), rgba(255, 255, 255, 0.96));
}

.result-slide figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 700;
}

.result-slide figcaption::after {
  content: "Antes / Depois";
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(196, 173, 118, 0.45);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(38, 35, 35, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--gold);
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.04);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

.carousel-btn span {
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

.carousel-btn.prev span {
  transform: rotate(-135deg);
}

.carousel-btn.next span {
  transform: rotate(45deg);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(110, 102, 102, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.active {
  width: 28px;
  background: var(--gold);
}

.result-note {
  margin: 18px 0 0;
  color: var(--stone);
  font-size: 0.92rem;
  text-align: center;
}

.clinic-section {
  max-width: none;
  background: var(--white);
}

.clinic-section .section-heading,
.clinic-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 280px;
  gap: 14px;
}

.clinic-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.clinic-grid figure:first-child {
  grid-row: span 2;
}

.clinic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-carousel {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-track {
  align-items: stretch;
}

.testimonial {
  display: grid;
  align-content: center;
  min-width: 100%;
  min-height: 290px;
  padding: 48px 70px;
  background: var(--white);
  border: 1px solid rgba(196, 173, 118, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.testimonial p {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.25;
}

.testimonial strong {
  color: var(--gold-dark);
}

.contact-section {
  position: relative;
  margin: 0;
  padding: 110px 36px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("assets/clinic-3.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.18;
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p:not(.eyebrow) {
  margin: 20px auto 30px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-actions {
  justify-content: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(38, 35, 35, 0.22);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 36px;
  color: var(--stone);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 150px;
  mix-blend-mode: multiply;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
}

.reveal {
  transition: opacity 560ms ease, transform 560ms ease;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

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

@media (max-width: 980px) {
  .site-header {
    height: 70px;
    padding: 0 22px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.34);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 8px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 82vh;
    padding: 126px 22px 72px;
  }

  .hero-media {
    background-position: 54% top;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(38, 35, 35, 0.78) 0%, rgba(38, 35, 35, 0.56) 58%, rgba(38, 35, 35, 0.25) 100%),
      linear-gradient(180deg, rgba(38, 35, 35, 0.2), rgba(38, 35, 35, 0.48));
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-content {
    width: min(680px, 100%);
    margin: 0;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .intro-strip,
  .about-grid,
  .services-grid,
  .procedure-gallery,
  .clinic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-strip {
    margin-top: 0;
    padding: 0;
  }

  .intro-strip div,
  .intro-strip div:first-child,
  .intro-strip div:last-child {
    border-radius: 0;
  }

  .intro-strip div:nth-child(2) {
    border-right: 1px solid rgba(196, 173, 118, 0.22);
  }

  .intro-strip div:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding: 82px 22px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2.35rem;
  }

  .about-grid {
    column-gap: 34px;
    row-gap: 24px;
  }

  .about-heading {
    padding-left: 24px;
  }

  .about-heading h2 {
    font-size: 2.7rem;
  }

  .about-copy {
    padding-left: 24px;
  }

  .about-copy p {
    font-size: 1.08rem;
    line-height: 1.68;
  }

  .about-visual {
    padding: 24px;
  }

  .founders-card {
    padding: 14px;
  }

  .founders-card img {
    height: 520px;
  }

  .procedure-gallery {
    padding: 0 22px 62px;
  }

  .gallery-tile.large,
  .clinic-grid figure:first-child {
    grid-row: auto;
  }

  .result-slide img {
    height: 430px;
  }

  .clinic-section .section-heading,
  .clinic-grid {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: 78vh;
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .intro-strip,
  .about-grid,
  .services-grid,
  .procedure-gallery,
  .clinic-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip div,
  .intro-strip div:nth-child(2),
  .intro-strip div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .intro-strip div:last-child {
    border-bottom: 1px solid rgba(196, 173, 118, 0.22);
  }

  .about-copy {
    grid-row: 3;
    padding-left: 20px;
  }

  .about-heading {
    grid-row: 1;
    padding-left: 20px;
  }

  .founders-card {
    grid-column: 1;
    grid-row: 2;
  }

  .about-copy p {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .service-controls {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .service-filter {
    flex: 0 0 auto;
  }

  .procedure-gallery {
    grid-auto-rows: 320px;
  }

  .result-slide img {
    height: clamp(210px, 62vw, 280px);
    object-fit: contain;
    object-position: center;
  }

  .result-slide figcaption {
    display: grid;
    gap: 2px;
    min-height: 74px;
    padding: 16px;
  }

  .carousel-btn {
    top: auto;
    bottom: -2px;
    width: 42px;
    height: 42px;
  }

  .carousel-btn.prev {
    left: 12px;
  }

  .carousel-btn.next {
    right: 12px;
  }

  .carousel-dots {
    min-height: 46px;
    align-items: center;
  }

  .testimonial {
    min-height: 330px;
    padding: 34px 28px;
  }

  .testimonial p {
    font-size: 1.55rem;
  }

  .contact-section {
    padding: 82px 22px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 22px 92px;
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: auto;
    min-width: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
