@font-face {
  font-family: "Sweet Sans Pro";
  src:
    url("./sweet-sans-pro-regular-BihBwcvw.woff2") format("woff2"),
    url("./sweet-sans-pro-regular-Bfr74BM7.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sweet Sans Pro";
  src:
    url("./SweetSansPro-Medium-Dye3uYF_.woff2") format("woff2"),
    url("./SweetSansPro-Medium-C5Cfm7ry.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("./gothamlight-webfont-CueAfdIu.woff2") format("woff2"),
    url("gothamlight-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("./gothambook-webfont-cKvyhu_w.woff2") format("woff2"),
    url("gothambook-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #eceff1;
  --color-tan: #ad9d90;
  --color-white: #ffffff;
  --color-cream: #ece2d8;
  --color-dark: #454545;
  --color-gray: #797979;
  --color-gray-light: #acacac;
  --link-underline-thickness: 1px;
  --link-hover-duration: 260ms;
  --link-hover-ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Sweet Sans Pro", Georgia, "Times New Roman", serif;
  --font-body: "Gotham", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-bg);
  color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cta-button:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 2px;
}
.cta-button--variant1 {
  background-color: var(--color-tan);
  color: var(--color-white);
}
.cta-button--variant1:hover {
  background-color: rgba(173, 157, 144, 0.7);
}
.cta-button--variant2 {
  background-color: var(--color-white);
  color: var(--color-tan);
}
.cta-button--variant2:hover {
  background-color: rgba(255, 255, 255, 0.7);
}.text-anchor {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  width: fit-content;
  position: relative;
}
.text-anchor::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.14em;
  width: 100%;
  height: var(--link-underline-thickness, 1px);
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--link-hover-duration, 260ms) var(--link-hover-ease, cubic-bezier(0.22, 1, 0.36, 1));
  pointer-events: none;
}
.text-anchor:hover::after, .text-anchor:focus-visible::after {
  transform: scaleX(1);
}.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar--scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.navbar--top {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}
.navbar__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  position: relative;
}
.navbar__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo {
  height: 47px;
  width: auto;
  object-fit: contain;
  display: block;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar__nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-tan);
  text-decoration: none;
  transition: color 0.2s;
}
.navbar__nav-link:hover {
  color: var(--color-dark);
}
.navbar__cta {
  flex-shrink: 0;
  font-size: 16px;
}
.navbar__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar__mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: #eceff1;
  z-index: 60;
  padding: 24px 36px;
  overflow-y: auto;
}
.navbar__mobile-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.navbar__mobile-logo-link {
  display: inline-flex;
}
.navbar__mobile-logo {
  height: 47px;
  width: auto;
}
.navbar__mobile-close {
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  color: var(--color-tan);
  cursor: pointer;
  font-size: 23px;
  line-height: 0.75;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar__mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  margin-top: 37px;
}
.navbar__mobile-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--color-dark);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .navbar__container {
    padding: 0 24px;
  }
  .navbar__nav, .navbar__cta {
    display: none;
  }
  .navbar__mobile-toggle {
    display: block;
  }
  .navbar__mobile-menu {
    padding: 24px 28px 36px;
  }
  .navbar__mobile-nav {
    gap: 22px;
    margin-top: 34px;
  }
  .navbar__mobile-link {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .navbar__container {
    padding: 0 20px;
    height: 74px;
  }
  .navbar__logo {
    height: 39px;
  }
  .navbar__mobile-menu {
    padding: 24px 36px 32px;
  }
  .navbar__mobile-nav {
    gap: 24px;
    margin-top: 37px;
  }
  .navbar__mobile-link {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}@keyframes hero-from-left {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-from-right {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-line-reveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
.hero {
  width: 100%;
  min-height: 867px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url("./hero-bg-BacxLqBY.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 115px;
}
.hero__layout {
  min-height: 867px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.hero__left {
  width: 781px;
  margin-top: 223px;
  display: flex;
  flex-direction: column;
  animation: hero-from-left 1.3s cubic-bezier(0.42, 0, 0.58, 1) both;
}
.hero__right {
  width: 374px;
  margin-top: 587px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: hero-from-right 1.3s cubic-bezier(0.42, 0, 0.58, 1) 0.3s both;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}
.hero__line {
  width: 100%;
  height: 1px;
  margin-top: 32px;
  background: #acacac;
  transform-origin: left center;
  animation: hero-line-reveal 1s cubic-bezier(0.42, 0, 0.58, 1) 0.7s both;
}
.hero__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  line-height: 140%;
  color: #fff;
  text-align: left;
}
.hero__primary-cta {
  min-height: 38px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .hero__left, .hero__right, .hero__line {
    animation: none;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: 721px;
  }
  .hero__container {
    max-width: 768px;
    padding: 0 24px;
  }
  .hero__layout {
    min-height: 721px;
    gap: 24px;
  }
  .hero__left {
    width: 345px;
    margin-top: 248px;
  }
  .hero__right {
    width: 171px;
    margin-top: 490px;
    gap: 22px;
  }
  .hero__title {
    font-size: 30px;
    line-height: 1.1;
  }
  .hero__line {
    margin-top: 22px;
  }
  .hero__description {
    font-size: 18px;
    line-height: 1.4;
  }
  .hero__primary-cta {
    min-height: 31px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .hero__title {
    font-size: 27px;
  }
  .hero__description {
    font-size: 17px;
  }
  .hero__primary-cta {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 721px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url("./hero-bg-mobile-Df0QXBGL.webp");
    background-position: center center;
  }
  .hero__container {
    max-width: 390px;
    padding: 0 24px;
  }
  .hero__layout {
    min-height: 721px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
  .hero__left {
    width: 280px;
    margin-top: 331px;
  }
  .hero__title {
    font-size: 24px;
    line-height: 1.1;
  }
  .hero__line {
    width: 279px;
    margin-top: 12px;
    background: #acacac;
  }
  .hero__right {
    width: 225px;
    margin-top: 65px;
    margin-left: auto;
    gap: 22px;
  }
  .hero__description {
    font-size: 16px;
    line-height: 1.4;
  }
  .hero__primary-cta {
    align-self: flex-start;
    font-size: 10px;
    min-height: 22px;
    letter-spacing: 0.02em;
  }
}.about {
  background: var(--color-tan);
  width: 100%;
  min-height: 914px;
  overflow: hidden;
  position: relative;
}
.about__container {
  max-width: 1440px;
  margin: 0 auto;
  height: 914px;
  position: relative;
}
.about__content {
  position: absolute;
  left: 115px;
  top: 159px;
  width: 491px;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.3s cubic-bezier(0.42, 0, 0.58, 1), transform 1.3s cubic-bezier(0.42, 0, 0.58, 1);
}
.about__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 54px;
  line-height: 115%;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.about__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  line-height: 140%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__cta {
  margin-top: 32px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.about__images {
  position: absolute;
  right: 0;
  top: 0;
  width: 773px;
  height: 914px;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.42, 0, 0.58, 1) 0.45s;
}
.about--visible .about__content {
  opacity: 1;
  transform: translateX(0);
}
.about--visible .about__images {
  opacity: 1;
}
.about__img {
  position: absolute;
}
.about__img-inner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}
.about__img--facial {
  left: 0;
  top: 153px;
  width: 466px;
  height: 606px;
}
.about__img--corporal {
  left: 314px;
  top: 232px;
  width: 344px;
  height: 447px;
}

@media (prefers-reduced-motion: reduce) {
  .about__content, .about__images {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 1280px) and (min-width: 1025px) {
  .about {
    min-height: 820px;
  }
  .about__container {
    height: 820px;
  }
  .about__content {
    left: 48px;
    top: 112px;
    width: min(40%, 420px);
  }
  .about__title {
    font-size: 44px;
    margin-bottom: 24px;
  }
  .about__text {
    font-size: 19px;
    gap: 16px;
  }
  .about__cta {
    margin-top: 24px;
    font-size: 16px;
  }
  .about__images {
    width: clamp(500px, 46vw, 560px);
    height: 820px;
  }
  .about__img--facial {
    top: 16.7%;
    width: 60.3%;
    height: 66.3%;
  }
  .about__img--corporal {
    left: 40.6%;
    top: 25.4%;
    width: 44.5%;
    height: 48.9%;
  }
}
@media (max-width: 1024px) {
  .about__container {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 60px 24px;
  }
  .about__content {
    position: static;
    width: 100%;
    margin-bottom: 40px;
  }
  .about__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .about__text {
    font-size: 18px;
    gap: 16px;
  }
  .about__cta {
    margin-top: 24px;
    font-size: 14px;
  }
  .about__images {
    position: relative;
    width: 100%;
    height: 420px;
  }
  .about__img-inner {
    object-fit: contain;
  }
  .about__img-inner--facial {
    object-position: left top;
  }
  .about__img-inner--corporal {
    object-position: right center;
  }
  .about__img--facial {
    width: min(62%, 340px);
    height: 100%;
    left: 0;
    top: 0;
  }
  .about__img--corporal {
    width: min(46%, 260px);
    height: 72%;
    left: auto;
    right: 24px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .about__title {
    font-size: 30px;
  }
  .about__text {
    font-size: 17px;
  }
  .about__cta {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .about__container {
    padding: 56px 20px;
    gap: 0;
  }
  .about__content {
    margin-bottom: 32px;
  }
  .about__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about__text {
    font-size: 16px;
    gap: 14px;
  }
  .about__cta {
    margin-top: 20px;
    font-size: 10px;
  }
  .about__images {
    position: relative;
    height: 320px;
  }
  .about__img-inner {
    object-fit: contain;
  }
  .about__img-inner--facial {
    object-position: left top;
  }
  .about__img-inner--corporal {
    object-position: right bottom;
  }
  .about__img--facial {
    width: 242px;
    height: 314px;
    left: 0;
    top: 0;
  }
  .about__img--corporal {
    width: 178px;
    height: 232px;
    left: auto;
    right: 24px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}@keyframes services-card-up {
  from {
    opacity: 0;
    transform: translateY(72px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services {
  background: var(--color-bg);
  width: 100%;
  padding: 120px 0 0;
}
.services__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 115px;
}
.services__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 54px;
  line-height: 115%;
  color: var(--color-tan);
  text-transform: uppercase;
  margin: 0 auto 92px;
  max-width: 1096px;
  text-align: center;
}
.services__grid {
  display: flex;
  gap: 14px;
}
.services__card {
  max-width: 394px;
  flex: 1;
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 66px 56px;
  animation: services-card-up 1s cubic-bezier(0.42, 0, 0.58, 1) both paused;
}
.services--visible .services__card {
  animation-play-state: running;
}
.services--visible .services__card:nth-child(1) {
  animation-delay: 0ms;
}
.services--visible .services__card:nth-child(2) {
  animation-delay: 500ms;
}
.services--visible .services__card:nth-child(3) {
  animation-delay: 1000ms;
}
.services__circle-wrap {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 64px;
  flex-shrink: 0;
}
.services__circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: var(--color-dark);
  text-align: center;
  width: 100%;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.services__card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-tan);
  text-align: center;
  max-width: 204px;
  flex: 1;
}

@media (prefers-reduced-motion: reduce) {
  .services__card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 1024px) {
  .services {
    padding: 60px 0 0;
  }
  .services__container {
    padding: 0 24px;
  }
  .services__title {
    font-size: 36px;
    margin-bottom: 56px;
    max-width: 780px;
  }
  .services__grid {
    gap: 12px;
  }
  .services__card {
    max-width: none;
    min-height: auto;
    padding: 48px 24px;
  }
  .services__circle-wrap {
    width: 132px;
    height: 132px;
    margin-bottom: 28px;
  }
  .services__card-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .services__card-text {
    max-width: 240px;
    font-size: 16px;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .services__title {
    font-size: 30px;
  }
  .services__card-title {
    font-size: 21px;
  }
  .services__card-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .services__circle-wrap {
    margin-bottom: 18px;
  }
  .services__card-title {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .services__card-text {
    max-width: 262px;
    font-size: 16px;
  }
  .services__grid {
    flex-direction: column;
    gap: 14px;
  }
  .services__card {
    min-height: auto;
    padding: 32px 46px;
  }
}.diferenciais {
  background: var(--color-bg);
  width: 100%;
  min-height: 627px;
  padding-top: 40px;
}
.diferenciais__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 115px;
}
.diferenciais__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 54px;
  line-height: 115%;
  color: var(--color-tan);
  text-transform: uppercase;
  padding: 72px 0 56px;
  max-width: 1096px;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(0.42, 0, 0.58, 1), transform 1.1s cubic-bezier(0.42, 0, 0.58, 1);
}
.diferenciais__grid {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 1.2s cubic-bezier(0.42, 0, 0.58, 1) 0.48s, transform 1.2s cubic-bezier(0.42, 0, 0.58, 1) 0.48s;
}
.diferenciais--visible .diferenciais__title {
  opacity: 1;
  transform: translateY(0);
}
.diferenciais--visible .diferenciais__grid {
  opacity: 1;
  transform: translateY(0);
}
.diferenciais__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.diferenciais__row--first {
  border-top: 1px solid var(--color-tan);
}
.diferenciais__item {
  border-right: 1px solid var(--color-tan);
  border-bottom: 1px solid var(--color-tan);
  background: #fff;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 184px;
}
.diferenciais__item--first {
  border-left: 1px solid var(--color-tan);
}
.diferenciais__icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ad9d90;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-tan);
  font-size: 38px;
  line-height: 1;
}
.diferenciais__label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  line-height: 130%;
  color: var(--color-dark);
}
.diferenciais__spacer {
  height: 72px;
}

@media (prefers-reduced-motion: reduce) {
  .diferenciais__title, .diferenciais__grid {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 1024px) {
  .diferenciais {
    min-height: auto;
  }
  .diferenciais__container {
    padding: 0 24px;
  }
  .diferenciais__title {
    max-width: 780px;
    font-size: 32px;
    padding: 56px 0 44px;
  }
  .diferenciais__item {
    min-height: 150px;
    padding: 24px 16px;
    gap: 14px;
  }
  .diferenciais__icon {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }
  .diferenciais__label {
    font-size: 18px;
  }
  .diferenciais__spacer {
    height: 56px;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .diferenciais__title {
    font-size: 28px;
  }
  .diferenciais__icon {
    font-size: 27px;
  }
  .diferenciais__label {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .diferenciais__container {
    padding: 60px 24px;
  }
  .diferenciais__title {
    max-width: 342px;
    font-size: 24px;
    padding: 0 0 40px;
  }
  .diferenciais__row {
    grid-template-columns: 1fr;
  }
  .diferenciais__row--first {
    border-top: none;
  }
  .diferenciais__spacer {
    height: 0;
  }
  .diferenciais__item {
    border-top: 1px solid var(--color-tan);
    border-right: 1px solid var(--color-tan);
    border-bottom: none;
    border-left: 1px solid var(--color-tan);
    min-height: auto;
    padding: 20px 16px;
  }
  .diferenciais__item--last {
    border-bottom: 1px solid var(--color-tan);
  }
  .diferenciais__icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  .diferenciais__label {
    font-size: 16px;
  }
}.doctor {
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.doctor__content {
  flex: 0 0 58.6%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-right: 56px;
  padding-bottom: 80px;
  padding-left: max(115px, (100vw - 1440px) / 2 + 115px);
  border-top-left-radius: 80px;
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1.1s cubic-bezier(0.42, 0, 0.58, 1), transform 1.1s cubic-bezier(0.42, 0, 0.58, 1);
}
.doctor__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: var(--color-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.doctor__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  color: var(--color-dark);
  margin-bottom: 48px;
}
.doctor__bio {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-dark);
  margin-bottom: 36px;
  max-width: 574px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doctor__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: var(--color-tan);
  text-decoration: none;
  padding: 10px 14px;
  text-transform: uppercase;
  width: fit-content;
}
.doctor__image-wrap {
  flex: 0 0 41.4%;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1.1s cubic-bezier(0.42, 0, 0.58, 1) 0.2s, transform 1.1s cubic-bezier(0.42, 0, 0.58, 1) 0.2s;
}
.doctor--visible .doctor__content {
  opacity: 1;
  transform: translateX(0);
}
.doctor--visible .doctor__image-wrap {
  opacity: 1;
  transform: translateX(0);
}
.doctor__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 100px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .doctor__content, .doctor__image-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 1024px) {
  .doctor__content {
    flex: 0 0 62%;
    justify-content: flex-start;
    padding: 60px 24px;
    border-top-left-radius: 56px;
  }
  .doctor__name {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .doctor__title {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .doctor__bio {
    font-size: 14px;
    margin-bottom: 24px;
    gap: 10px;
    max-width: none;
  }
  .doctor__cta {
    font-size: 12px;
  }
  .doctor__image-wrap {
    flex: 1 1 38%;
  }
  .doctor__image {
    border-radius: 0 72px 0 0;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .doctor__name {
    font-size: 18px;
  }
  .doctor__title {
    font-size: 11px;
  }
  .doctor__bio {
    font-size: 11px;
  }
  .doctor__cta {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .doctor__content {
    flex: 0 0 calc(100% - 162px);
    max-width: calc(100% - 162px);
    justify-content: flex-start;
    padding: 18px 10px 18px 24px;
    border-top-left-radius: 39px;
  }
  .doctor__name {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.13;
  }
  .doctor__title {
    font-size: 8px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .doctor__bio {
    font-size: 8px;
    line-height: 1.22;
    gap: 6px;
    margin-bottom: 10px;
    max-height: 232px;
    overflow: hidden;
  }
  .doctor__cta {
    font-size: 7px;
    padding: 6px 8px;
  }
  .doctor__image-wrap {
    flex: 0 0 162px;
    width: 162px;
  }
  .doctor__image {
    border-radius: 0 49px 0 0;
    object-position: center top;
  }
}.doctor-secondary {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.doctor-secondary__image-wrap {
  flex: 0 0 36.9%;
  overflow: hidden;
  position: relative;
  border-bottom-left-radius: 100px;
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1.1s cubic-bezier(0.42, 0, 0.58, 1), transform 1.1s cubic-bezier(0.42, 0, 0.58, 1);
}
.doctor-secondary__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.doctor-secondary__content {
  flex: 0 0 63.1%;
  background: var(--color-tan);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-right: max(115px, (100vw - 1440px) / 2 + 115px);
  padding-bottom: 80px;
  padding-left: 56px;
  border-bottom-right-radius: 80px;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1.1s cubic-bezier(0.42, 0, 0.58, 1) 0.2s, transform 1.1s cubic-bezier(0.42, 0, 0.58, 1) 0.2s;
}
.doctor-secondary--visible .doctor-secondary__image-wrap {
  opacity: 1;
  transform: translateX(0);
}
.doctor-secondary--visible .doctor-secondary__content {
  opacity: 1;
  transform: translateX(0);
}
.doctor-secondary__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.doctor-secondary__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 48px;
}
.doctor-secondary__bio {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 564px;
}
.doctor-secondary__cta {
  margin-top: 48px;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  .doctor-secondary__image-wrap, .doctor-secondary__content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 1024px) {
  .doctor-secondary__image-wrap {
    flex: 1 1 38%;
    border-bottom-left-radius: 72px;
  }
  .doctor-secondary__content {
    flex: 0 0 62%;
    justify-content: flex-start;
    border-bottom-right-radius: 56px;
    padding: 60px 24px;
  }
  .doctor-secondary__name {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .doctor-secondary__title {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .doctor-secondary__bio {
    font-size: 14px;
    gap: 10px;
    max-width: none;
  }
  .doctor-secondary__cta {
    margin-top: 24px;
    font-size: 12px;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .doctor-secondary__name {
    font-size: 18px;
  }
  .doctor-secondary__title {
    font-size: 11px;
  }
  .doctor-secondary__bio {
    font-size: 11px;
  }
  .doctor-secondary__cta {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .doctor-secondary__image-wrap {
    flex: 0 0 162px;
    width: 162px;
    border-bottom-left-radius: 49px;
  }
  .doctor-secondary__image {
    object-position: left top;
  }
  .doctor-secondary__content {
    flex: 0 0 calc(100% - 162px);
    max-width: calc(100% - 162px);
    justify-content: flex-start;
    padding: 18px 24px 18px 10px;
    border-bottom-right-radius: 49px;
  }
  .doctor-secondary__name {
    font-size: 14px;
    line-height: 1.13;
    margin-bottom: 6px;
  }
  .doctor-secondary__title {
    font-size: 8px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .doctor-secondary__bio {
    font-size: 8px;
    line-height: 1.22;
    gap: 6px;
    margin-bottom: 10px;
    max-height: 232px;
    overflow: hidden;
  }
  .doctor-secondary__cta {
    margin-top: 0;
    font-size: 7px;
    padding: 6px 8px;
    letter-spacing: 0.02em;
  }
}.cta {
  position: relative;
  z-index: 1;
  margin-top: -120px;
  padding-top: 120px;
  width: 100%;
  height: 676px;
  overflow: hidden;
}
.cta__bg, .cta__overlay {
  position: absolute;
  inset: 0;
}
.cta__bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta__overlay {
  background: rgba(0, 0, 0, 0.22);
}
.cta__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 115px;
  display: grid;
  place-items: center;
}
.cta__card {
  width: 100%;
  max-width: 1210px;
  background: var(--color-tan);
  padding: 56px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1.1s cubic-bezier(0.42, 0, 0.58, 1), transform 1.1s cubic-bezier(0.42, 0, 0.58, 1);
}
.cta--visible .cta__card {
  opacity: 1;
  transform: scale(1);
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 54px;
  line-height: 113%;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: 1006px;
}
.cta__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 725px;
}
.cta__button {
  font-size: 14px;
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  .cta__card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 1024px) {
  .cta {
    margin-top: -40px;
    padding-top: 40px;
    height: auto;
  }
  .cta__container {
    padding: 60px 20px;
  }
  .cta__card {
    padding: 40px 48px;
  }
  .cta__title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .cta__description {
    font-size: 12px;
  }
}.footer {
  background: var(--color-bg);
}
.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 115px;
}
.footer__desktop {
  padding: 120px 0 30px;
}
.footer__desktop-top {
  display: grid;
  grid-template-columns: auto 1fr 230px;
  column-gap: 32px;
  margin-top: 120px;
  margin-bottom: 135px;
  align-items: flex-start;
}
.footer__column {
  padding-top: 14px;
}
.footer__column--contacts {
  justify-self: start;
  width: fit-content;
}
.footer__column--nav {
  justify-self: end;
  width: 230px;
}
.footer__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 2.2px;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 42px;
}
.footer__column-line {
  width: 100%;
  height: 1px;
  background: var(--color-gray-light);
  margin-bottom: 42px;
}
.footer__column--contacts .footer__column-line {
  width: 100%;
}
.footer__column--nav .footer__column-line {
  width: 230px;
}
.footer__links {
  display: grid;
  row-gap: 30px;
}
.footer__links--contacts {
  grid-template-columns: max-content max-content;
  column-gap: 24px;
  width: fit-content;
}
.footer__links--nav {
  grid-template-columns: 106px 106px;
  column-gap: 18px;
}
.footer__text, .footer__link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  color: var(--color-tan);
}
.footer__link {
  text-decoration: none;
}
.footer__link--privacy {
  width: 106px;
  white-space: normal;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.footer__logo {
  width: 91px;
  height: 166px;
  object-fit: contain;
  margin-bottom: 41px;
}
.footer__socials {
  display: flex;
  gap: 28px;
}
.footer__social-link {
  display: inline-flex;
  color: inherit;
}
.footer__social-icon {
  width: 30px;
  height: 30px;
}
.footer__desktop-separator {
  height: 1px;
  background: var(--color-gray-light);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.footer__copyright {
  margin-top: 39px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  color: var(--color-dark);
  display: flex;
  justify-content: center;
}
.footer__developed-by {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer__author {
  color: var(--color-tan);
  text-decoration: none;
  font-weight: 400;
}
.footer__mobile {
  display: none;
}
.footer__accordion-section {
  border-top: 1px solid var(--color-gray-light);
}
.footer__accordion-section:last-of-type {
  border-bottom: 1px solid var(--color-gray-light);
}
.footer__accordion-toggle {
  width: 100%;
  height: 60px;
  border: 0;
  background: transparent;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}
.footer__accordion-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-dark);
}
.footer__chevron {
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 6px;
  margin-top: -2px;
}
.footer__chevron--open {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.footer__accordion-content {
  display: grid;
  row-gap: 24px;
  padding: 0 25px 24px;
}
.footer__link--mobile, .footer__text--mobile {
  font-size: 12px;
  line-height: 1.2;
}
.footer__mobile-bottom {
  border-top: 1px solid var(--color-gray-light);
  padding: 24px 25px 12px;
}
.footer__copyright--mobile {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}
.footer__developed-by--mobile {
  margin-top: 24px;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}
.footer__socials--mobile {
  gap: 14px;
}
.footer__social-icon--mobile {
  width: 22px;
  height: 22px;
}
.footer__mobile-brand {
  padding: 28px 24px 28px;
}
.footer__mobile-logo {
  width: 54px;
  height: 99px;
  object-fit: contain;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .footer__container {
    padding: 0 40px;
  }
  .footer__desktop {
    padding: 0 0 28px;
  }
  .footer__desktop-top {
    grid-template-columns: 1fr;
    margin-top: 120px;
    margin-bottom: 72px;
    row-gap: 72px;
  }
  .footer__column--contacts, .footer__column--nav {
    max-width: 378px;
    width: 100%;
    justify-self: start;
  }
  .footer__brand {
    justify-self: start;
    align-items: flex-start;
  }
  .footer__copyright, .footer__developed-by {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .footer {
    border-top: 1px solid var(--color-gray-light);
  }
  .footer__container {
    padding: 0;
  }
  .footer__desktop {
    display: none;
  }
  .footer__mobile {
    display: block;
  }
}.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1200px, 100% - 24px);
  min-height: 75px;
  padding: 14px 22px;
  background: var(--color-bg);
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-consent__text {
  max-width: 795px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.37;
  color: var(--color-dark);
}
.cookie-consent__policy-link {
  font-weight: 400;
  text-decoration: underline;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-consent__button {
  width: 100px;
  min-height: 35px;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.cookie-consent__button--reject {
  border: 1px solid var(--color-tan);
  background: transparent;
  color: var(--color-tan);
}
.cookie-consent__button--reject:hover {
  background: rgba(173, 157, 144, 0.08);
  color: var(--color-tan);
}

@media (max-width: 768px) {
  .cookie-consent {
    width: min(380px, 100% - 10px);
    min-height: 217px;
    padding: 28px 18px 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 27px;
  }
  .cookie-consent__text {
    max-width: 338px;
    font-size: 12.5px;
    line-height: 1.52;
    text-align: center;
  }
  .cookie-consent__actions {
    gap: 10px;
  }
}.policy-page {
  padding-top: 74px;
  background: var(--color-bg);
}

.policy-content {
  width: 100%;
}
.policy-content__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 115px 115px 140px;
}
.policy-content__title {
  max-width: 873px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.6;
  color: var(--color-tan);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.policy-content__body {
  max-width: 1210px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.38;
  color: var(--color-dark);
}
.policy-content__body h2 {
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 20px;
}
.policy-content__body p {
  margin: 0 0 20px;
}
.policy-content__body ul {
  margin: 0 0 20px 42px;
  padding: 0;
}
.policy-content__body ul li {
  margin-bottom: 0;
}
.policy-content__body ul ul {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 42px;
}
.policy-content__updated {
  color: #989899;
}
.policy-content__strong {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .policy-content__container {
    padding: 72px 24px 100px;
  }
  .policy-content__title {
    font-size: 28px;
    margin-bottom: 28px;
    max-width: 760px;
  }
  .policy-content__body {
    font-size: 20px;
  }
  .policy-content__body h2,
  .policy-content__body p,
  .policy-content__body ul {
    margin-bottom: 16px;
  }
  .policy-content__body ul {
    margin-left: 30px;
  }
  .policy-content__body ul ul {
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .policy-page {
    padding-top: 64px;
  }
  .policy-content__container {
    padding: 44px 24px 92px;
  }
  .policy-content__title {
    max-width: 341px;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 30px;
  }
  .policy-content__body {
    max-width: 342px;
    font-size: 16px;
  }
  .policy-content__body h2,
  .policy-content__body p,
  .policy-content__body ul {
    margin-bottom: 15px;
  }
  .policy-content__body ul {
    margin-left: 20px;
  }
  .policy-content__body ul ul {
    margin-left: 20px;
  }
}