:root {
  --ink: #241a36;
  --ink-deep: #171122;
  --sky: #a9daf3;
  --sky-strong: #2b9bd7;
  --sky-soft: #eef8fd;
  --paper: #f8fafc;
  --white: #ffffff;
  --text: #4a4e5c;
  --muted: #747988;
  --line: #e4e8ef;
  --green: #1e9b65;
  --green-dark: #14734b;
  --gold: #f7b733;
  --shadow-sm: 0 10px 30px rgba(36, 26, 54, 0.08);
  --shadow-md: 0 22px 60px rgba(36, 26, 54, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(43, 155, 215, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 112px 0;
}

.topbar {
  position: relative;
  z-index: 101;
  color: rgba(255, 255, 255, 0.86);
  background: var(--ink-deep);
  font-size: 12px;
  font-weight: 600;
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.topbar p,
.topbar a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
}

.topbar i {
  color: var(--sky);
  font-size: 15px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(36, 26, 54, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 40px rgba(36, 26, 54, 0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: 176px;
}

.brand img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.main-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sky-strong);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: right;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 23px;
}

.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button i {
  font-size: 19px;
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
}

.button--primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(36, 26, 54, 0.2);
}

.button--primary:hover {
  background: #332447;
  box-shadow: 0 18px 36px rgba(36, 26, 54, 0.26);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(36, 26, 54, 0.15);
}

.button--ghost:hover {
  background: var(--white);
  border-color: rgba(36, 26, 54, 0.28);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.button--wide {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 82px 0 104px;
  overflow: hidden;
  background: linear-gradient(135deg, #fafdff 0%, #f6f9fc 55%, #edf7fc 100%);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(169, 218, 243, 0.12), transparent);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.7;
}

.hero__glow--one {
  top: -280px;
  right: -160px;
  width: 630px;
  height: 630px;
  background: radial-gradient(circle, rgba(169, 218, 243, 0.52), rgba(169, 218, 243, 0));
}

.hero__glow--two {
  bottom: -330px;
  left: -290px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(84, 62, 112, 0.1), rgba(84, 62, 112, 0));
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.rating-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(36, 26, 54, 0.09);
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(36, 26, 54, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.rating-pill__score {
  font-size: 14px;
  font-weight: 800;
}

.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
}

/* O webfont do Tabler não inclui o alias preenchido; usa o glifo oficial de estrela. */
.ti-star-filled::before {
  content: "\eb2e";
}

.stars i {
  font-size: 13px;
}

.eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--sky-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow i {
  font-size: 18px;
}

.eyebrow--light {
  color: var(--sky);
}

.hero h1,
.section-heading h2,
.clinic__content h2,
.reviews h2,
.location h2,
.faq h2,
.booking h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5.1vw, 66px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.hero h1 span,
.section-heading h2 span,
.clinic__content h2 span,
.reviews h2 span,
.location h2 span,
.faq h2 span,
.booking h2 span {
  color: var(--sky-strong);
}

.hero__lead {
  max-width: 610px;
  margin: 24px 0 30px;
  color: #5b6070;
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: #646978;
  font-size: 11px;
  font-weight: 700;
}

.hero__assurances span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.hero__assurances i {
  color: var(--green);
  font-size: 16px;
}

.hero__visual {
  position: relative;
  min-height: 580px;
}

.hero__visual::before {
  position: absolute;
  top: 5%;
  right: 0;
  width: 88%;
  height: 90%;
  content: "";
  background-image: radial-gradient(rgba(36, 26, 54, 0.11) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom right, transparent, black 25%, black 72%, transparent);
}

.hero__image {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-md);
}

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

.hero__image--primary {
  top: 0;
  right: 0;
  width: 74%;
  height: 500px;
  border-radius: 140px 24px 90px 24px;
  transform: rotate(1.2deg);
}

.hero__image--primary img {
  object-position: 50% 55%;
}

.hero__image--secondary {
  bottom: 4px;
  left: 0;
  width: 48%;
  height: 290px;
  border-radius: 22px 70px 22px 70px;
  transform: rotate(-3deg);
}

.hero__image--secondary img {
  object-position: center 57%;
}

.hero__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(36, 26, 54, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero__badge > i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--sky);
  border-radius: 12px;
  font-size: 20px;
}

.hero__badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero__badge strong {
  color: var(--ink);
  font-size: 12px;
}

.hero__badge span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.hero__badge--care {
  top: 60px;
  left: -34px;
}

.hero__badge--location {
  right: -24px;
  bottom: 38px;
}

.credentials {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--ink);
}

.credentials__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.3fr 1fr;
}

.credentials__grid > div {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 105px;
  padding: 20px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.credentials__grid > div:first-child {
  padding-left: 34px;
}

.credentials__grid > div:last-child {
  padding-right: 34px;
  border-right: 0;
}

.credentials__grid i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--sky);
  border-radius: 13px;
  font-size: 21px;
}

.credentials__grid span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.5;
}

.credentials__grid strong {
  color: var(--white);
  font-size: 11px;
}

.credentials__grid .status-open {
  color: #70e4ad;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.clinic__content h2,
.reviews h2,
.location h2,
.faq h2,
.booking h2 {
  font-size: clamp(36px, 4.2vw, 54px);
}

.section-heading--split > p {
  max-width: 440px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}

.treatments {
  background: var(--paper);
}

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

.treatment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(36, 26, 54, 0.07);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(36, 26, 54, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-card:hover {
  border-color: rgba(43, 155, 215, 0.24);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--sky-soft);
  border: 1px solid rgba(43, 155, 215, 0.12);
  border-radius: 16px;
}

.icon-box i {
  font-size: 25px;
}

.treatment-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.3;
}

.treatment-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.treatment-card > a:not(.button) {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.treatment-card > a:not(.button) i {
  color: var(--sky-strong);
  font-size: 16px;
  transition: transform 0.2s ease;
}

.treatment-card:hover > a:not(.button) i {
  transform: translateX(4px);
}

.treatment-card--cta {
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  border-color: var(--ink);
}

.treatment-card--cta::after {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  content: "";
  background: rgba(169, 218, 243, 0.1);
  border: 1px solid rgba(169, 218, 243, 0.2);
  border-radius: 50%;
}

.treatment-card--cta img {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 62px;
  opacity: 0.13;
  filter: brightness(0) invert(1);
}

.treatment-card--cta h3,
.treatment-card--cta p,
.treatment-card--cta a {
  position: relative;
  z-index: 2;
}

.treatment-card--cta h3 {
  margin-top: 0;
  color: var(--white);
}

.treatment-card--cta p {
  color: rgba(255, 255, 255, 0.64);
}

.treatment-card--cta .button {
  align-self: flex-start;
  min-height: 46px;
  padding-inline: 18px;
  font-size: 12px;
}

.clinic {
  overflow: hidden;
  background: var(--white);
}

.clinic__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.clinic__gallery {
  position: relative;
  min-height: 620px;
}

.clinic__gallery::before {
  position: absolute;
  top: 3%;
  left: -9%;
  width: 88%;
  height: 92%;
  content: "";
  background: var(--sky-soft);
  border-radius: 48% 52% 34% 66% / 44% 35% 65% 56%;
  transform: rotate(-5deg);
}

.clinic__photo {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-md);
}

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

.clinic__photo--large {
  top: 0;
  left: 0;
  width: 76%;
  height: 540px;
  border-radius: 28px 100px 28px 100px;
}

.clinic__photo--large img {
  object-position: center 58%;
}

.clinic__photo--small {
  right: -2%;
  bottom: 0;
  width: 47%;
  height: 310px;
  border-radius: 70px 22px 70px 22px;
}

.clinic__photo--small img {
  object-position: center 60%;
}

.clinic__lead {
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 15px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-box--small {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.icon-box--small i {
  font-size: 21px;
}

.feature-list strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.feature-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid rgba(36, 26, 54, 0.25);
}

.text-link i {
  color: var(--sky-strong);
  font-size: 18px;
}

.reviews {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.reviews::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0.7px, transparent 0.7px);
  background-size: 21px 21px;
  mask-image: linear-gradient(to right, transparent 5%, black, transparent 95%);
}

.reviews__orb {
  position: absolute;
  top: -260px;
  right: -150px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(169, 218, 243, 0.18), transparent 68%);
  border-radius: 50%;
}

.reviews .container {
  position: relative;
  z-index: 2;
}

.reviews__header {
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 52px;
}

.reviews h2,
.location h2,
.booking h2 {
  max-width: 680px;
  color: var(--white);
}

.reviews h2 span,
.location h2 span,
.booking h2 span {
  color: var(--sky);
}

.google-score {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 260px;
  padding: 17px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.google-score:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.google-score__g {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #4285f4;
  background: var(--white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

.google-score > span:nth-child(2) {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 8px;
  align-items: center;
  line-height: 1.2;
}

.google-score strong {
  font-size: 22px;
}

.google-score small {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.google-score > i {
  margin-left: auto;
  color: var(--sky);
}

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

.review-card {
  min-height: 280px;
  padding: 27px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
}

.review-card__top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.review-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: #6aa72d;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}

.review-avatar--purple {
  background: #6b3dcc;
}

.review-avatar--blue {
  background: var(--sky-strong);
}

.review-card__top > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.review-card__top strong {
  color: var(--white);
  font-size: 12px;
}

.review-card__top small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.review-card__top > i {
  margin-left: auto;
  color: rgba(169, 218, 243, 0.35);
  font-size: 30px;
}

.review-card blockquote {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.instagram {
  background: var(--paper);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.instagram-embed {
  min-width: 0;
  height: 650px;
  padding: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(36, 26, 54, 0.06);
}

.instagram-embed iframe {
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 0;
  border-radius: 14px;
}

.location {
  padding-top: 0;
  background: var(--paper);
}

.location__shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
  padding: 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location__map {
  min-height: 100%;
  overflow: hidden;
  border-radius: 22px;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
  filter: saturate(0.75) contrast(1.05);
}

.location__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.location h2 {
  margin-bottom: 32px;
  font-size: clamp(34px, 3.7vw, 48px);
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__info > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.location__info i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--sky);
  background: rgba(169, 218, 243, 0.1);
  border-radius: 12px;
  font-size: 19px;
}

.location__info span {
  font-size: 12px;
  line-height: 1.65;
}

.location__info strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 12px;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.location__actions .button {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 12px;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 10vw, 130px);
}

.faq__intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 380px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item button {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 4px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.accordion__item button i {
  flex: 0 0 auto;
  font-size: 19px;
  transition: transform 0.25s ease;
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.accordion__panel p {
  min-height: 0;
  margin: 0;
  padding: 0 40px 0 4px;
  color: var(--muted);
  font-size: 13px;
  transition: padding-bottom 0.3s ease;
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__item.is-open .accordion__panel p {
  padding-bottom: 26px;
}

.accordion__item.is-open button i {
  transform: rotate(180deg);
}

.booking {
  padding-top: 0;
  background: var(--white);
}

.booking__shell {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
  padding: clamp(40px, 7vw, 86px);
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 15% 15%, rgba(169, 218, 243, 0.14), transparent 28%),
    var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.booking__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 23px 0 30px;
  font-size: 14px;
}

.booking__contact {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.booking__contact > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 23px;
}

.booking__contact span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.booking__contact small {
  font-size: 9px;
}

.booking__contact strong {
  color: var(--white);
  font-size: 15px;
}

.booking-form {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.19);
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #f7f8fa;
  border: 1px solid #e3e6ec;
  border-radius: 12px;
  outline: none;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder {
  color: #a0a4ae;
}

.field input:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--sky-strong);
  box-shadow: 0 0 0 4px rgba(43, 155, 215, 0.11);
}

.booking-form .button--primary {
  background: var(--green);
  box-shadow: 0 12px 26px rgba(30, 155, 101, 0.22);
}

.booking-form .button--primary:hover {
  background: var(--green-dark);
}

.booking-form > small {
  display: block;
  margin-top: 10px;
  color: #9297a3;
  text-align: center;
  font-size: 9px;
}

.footer {
  padding-top: 78px;
  color: #737887;
  background: #f0f3f6;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.65fr 0.9fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer__brand img {
  width: 130px;
  height: 80px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.footer__brand p,
.footer__column p,
.footer__column a {
  font-size: 11px;
}

.footer__brand p {
  max-width: 270px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 18px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__column h3 {
  margin: 7px 0 12px;
  color: var(--ink);
  font-size: 12px;
}

.footer__column p {
  margin: 0 0 7px;
}

.footer__column strong,
.footer__column a:hover {
  color: var(--ink);
}

.footer__bottom {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  border-top: 1px solid #dce0e6;
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(20, 115, 75, 0.35);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

.whatsapp-float i {
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal--delay-sm {
  transition-delay: 0.08s;
}

.reveal--delay {
  transition-delay: 0.16s;
}

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 11px;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }

  .hero__visual {
    min-height: 530px;
  }

  .hero__image--primary {
    width: 82%;
    height: 450px;
  }

  .hero__image--secondary {
    height: 250px;
  }

  .hero__badge--care {
    left: -10px;
  }

  .hero__badge--location {
    right: -8px;
  }

  .instagram-embed {
    height: 540px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
    max-height: calc(100vh - var(--header-height));
    padding: 24px 20px 30px;
    overflow-y: auto;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(36, 26, 54, 0.12);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 15px;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 90px;
  }

  .hero__grid,
  .clinic__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__visual {
    width: min(100%, 640px);
    min-height: 610px;
    margin: 10px auto 0;
  }

  .hero__image--primary {
    width: 76%;
    height: 520px;
  }

  .hero__image--secondary {
    width: 45%;
    height: 290px;
  }

  .credentials__grid {
    grid-template-columns: 1fr 1.35fr;
  }

  .credentials__grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .credentials__grid > div:nth-child(2) {
    border-right: 0;
  }

  .credentials__grid > div:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    border-bottom: 0;
  }

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

  .clinic__gallery {
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .clinic__content {
    max-width: 700px;
  }

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

  .instagram-embed:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    margin-inline: auto;
  }

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

  .location__map iframe {
    min-height: 450px;
  }

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

  .booking__content {
    max-width: 720px;
  }

  .booking-form {
    max-width: 620px;
  }

  .footer__main {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 45px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar__content {
    justify-content: center;
  }

  .topbar__content a {
    display: none;
  }

  .brand {
    width: 150px;
  }

  .hero {
    padding-top: 48px;
  }

  .rating-pill {
    flex-wrap: nowrap;
    gap: 8px;
    max-width: 100%;
    white-space: nowrap;
  }

  .rating-pill > span:last-child {
    width: auto;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
    padding: 8px 12px;
    color: #41475a;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(36, 26, 54, 0.09);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(36, 26, 54, 0.08);
    backdrop-filter: blur(10px);
  }

  .hero__assurances span {
    gap: 10px;
    min-height: 44px;
    padding: 8px 4px;
  }

  .hero__assurances span + span {
    border-top: 1px solid rgba(36, 26, 54, 0.08);
  }

  .hero__assurances i {
    flex: 0 0 auto;
    font-size: 20px;
  }

  .hero__visual {
    min-height: 470px;
  }

  .hero__image--primary {
    width: 82%;
    height: 390px;
    border-radius: 90px 20px 60px 20px;
  }

  .hero__image--secondary {
    width: 50%;
    height: 220px;
    border-width: 6px;
    border-radius: 18px 50px 18px 50px;
  }

  .hero__badge {
    padding: 10px 11px;
  }

  .hero__badge > i {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .hero__badge--care {
    top: 26px;
    left: 0;
  }

  .hero__badge--location {
    right: 0;
    bottom: 22px;
  }

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

  .credentials__grid > div,
  .credentials__grid > div:first-child,
  .credentials__grid > div:last-child {
    grid-column: auto;
    justify-content: flex-start;
    min-height: 86px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .credentials__grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .section-heading h2,
  .clinic__content h2,
  .reviews h2,
  .location h2,
  .faq h2,
  .booking h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .treatments__grid,
  .reviews__grid,
  .instagram__grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    min-height: 285px;
  }

  .clinic__grid {
    gap: 60px;
  }

  .clinic__gallery {
    min-height: 475px;
  }

  .clinic__photo--large {
    width: 82%;
    height: 410px;
    border-radius: 22px 70px 22px 70px;
  }

  .clinic__photo--small {
    width: 50%;
    height: 230px;
    border-width: 6px;
  }

  .reviews__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .google-score {
    width: 100%;
  }

  .instagram .section-heading .button {
    width: 100%;
  }

  .instagram-embed,
  .instagram-embed:nth-child(3) {
    grid-column: auto;
    width: 100%;
    height: 650px;
  }

  .location__shell {
    padding: 10px;
    border-radius: 24px;
  }

  .location__map {
    border-radius: 18px;
  }

  .location__map iframe {
    min-height: 340px;
  }

  .location__content {
    padding: 36px 18px 30px;
  }

  .location__actions {
    flex-direction: column;
  }

  .location__actions .button {
    width: 100%;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq__intro {
    position: static;
  }

  .booking__shell {
    width: 100%;
    padding: 54px 14px 14px;
    border-radius: 0;
  }

  .booking__content {
    padding-inline: 6px;
  }

  .booking-form {
    padding: 22px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer__brand,
  .footer__column:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0 88px;
  }

  .footer__bottom p {
    margin: 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
  }
}

@media (max-width: 430px) {
  .hero__visual {
    min-height: 430px;
  }

  .hero__image--primary {
    height: 350px;
  }

  .hero__image--secondary {
    height: 190px;
  }

  .hero__badge--care {
    top: 15px;
  }

  .hero__badge--location {
    right: -3px;
    bottom: 9px;
  }

  .hero__badge--location > i {
    display: none;
  }

  .instagram-embed {
    height: 650px;
  }
}

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

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

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