:root {
  --gold: #b29537;
  --gold-light: #bda454;
  --ink: #0f172a;
  --white: #f8f8f8;
  --line: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

section:not(.hero),
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

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

.reveal-item,
.reveal-text {
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item:not(.is-visible),
.reveal-text:not(.is-visible) {
  will-change: opacity, transform;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
}

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

.reveal-text {
  opacity: 0.18;
  transform: translateY(18px);
}

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

.reveal-delay-1 {
  transition-delay: 70ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 210ms;
}

.reveal-delay-4 {
  transition-delay: 280ms;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar {
  width: min(1216px, calc(100% - 96px));
  min-height: 80px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 68px;
  height: 58px;
  flex: 0 0 68px;
}

.logo img {
  width: 68px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 39px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 14px);
  font-weight: 500;
  line-height: 1.22;
}

.nav-links a,
.nav-social a {
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.nav-links a:hover,
.nav-social a:hover {
  color: var(--gold);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: color 160ms ease;
}

.nav-social svg {
  width: 24px;
  height: 24px;
  display: block;
}

.nav-social a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 590px;
  aspect-ratio: auto;
  height: clamp(590px, 41.5vw, 958px);
  margin: 0;
  overflow: hidden;
  display: block;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: none;
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.hero-bg-image-mobile {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1208px, calc(100% - 96px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding-top: 36px;
}

.hero-copy {
  width: min(667px, 100%);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

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

.hero h1 {
  max-width: 667px;
  margin: 0;
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.highlight-fill {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  isolation: isolate;
}

.highlight-fill::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -0.06em;
  width: calc(100% + 0.12em);
  height: 82%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-fill.is-filled::before {
  transform: scaleX(1);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 7px;
  width: min(657px, 100%);
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 10px 14px;
  border: 0.65px solid var(--white);
  border-radius: 10px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-action {
  width: min(567px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.hero-action p {
  width: 100%;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.12;
}

.hero-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 6.2px rgba(255, 222, 115, 0.6);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-button img {
  width: 24px;
  height: 24px;
}

.hero-button,
.about-button,
.specialties-button,
.care-flow-button,
.testimonials-button,
.contact-button {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease,
    background 220ms ease;
}

.hero-button img,
.about-button img,
.specialties-button img,
.care-flow-button img,
.testimonials-button img,
.contact-button img {
  transition: transform 220ms ease;
  transform-origin: center;
}

.hero-button:hover,
.hero-button:focus-visible,
.about-button:hover,
.about-button:focus-visible,
.specialties-button:hover,
.specialties-button:focus-visible,
.care-flow-button:hover,
.care-flow-button:focus-visible,
.testimonials-button:hover,
.testimonials-button:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(255, 222, 115, 0.58),
    0 10px 26px rgba(178, 149, 55, 0.32);
  filter: saturate(1.08) brightness(1.03);
}

.hero-button:hover img,
.hero-button:focus-visible img,
.about-button:hover img,
.about-button:focus-visible img,
.specialties-button:hover img,
.specialties-button:focus-visible img,
.care-flow-button:hover img,
.care-flow-button:focus-visible img,
.testimonials-button:hover img,
.testimonials-button:focus-visible img,
.contact-button:hover img,
.contact-button:focus-visible img {
  transform: translate3d(3px, -3px, 0) rotate(-24deg);
}

.about-section {
  min-height: 736px;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--ink);
  padding: 58px 0;
}

.about-wrap {
  width: min(870px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.about-media {
  position: relative;
  flex: 0 0 355px;
  width: 355px;
  height: 555px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

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

.about-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.sound-button {
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1.2px solid var(--white);
  border-radius: 15px;
  background: var(--gold);
  cursor: pointer;
}

.sound-button img {
  width: 16px;
  height: 16px;
}

.sound-button.is-active {
  background: var(--ink);
}

.about-copy {
  width: 530px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.about-copy h2 {
  width: 424px;
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-copy h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.about-copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
}

.about-copy p:nth-of-type(1) {
  width: 441px;
}

.about-copy p:nth-of-type(2) {
  width: 397px;
}

.about-copy p:nth-of-type(3) {
  width: 501px;
}

.about-copy p:nth-of-type(4) {
  width: 335px;
}

.about-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 7px;
  padding: 18px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 6.2px rgba(255, 222, 115, 0.6);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.about-button img {
  width: 24px;
  height: 24px;
}

.benefits-strip {
  position: relative;
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
}

.benefits-strip::before,
.benefits-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  background: var(--gold);
  z-index: 1;
  pointer-events: none;
}

.benefits-strip::before {
  left: 0;
}

.benefits-strip::after {
  right: 0;
}

.benefits-strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 32px 40px;
  will-change: transform;
  animation: benefits-marquee 28s linear infinite;
}

.benefits-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

.benefits-strip span img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

@keyframes benefits-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.specialties-section {
  padding: 94px 0 88px;
  background: var(--white);
  color: var(--ink);
}

.specialties-wrap {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
}

.specialties-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.specialties-head h2 {
  width: 552px;
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.specialties-badge {
  position: relative;
  width: 133.714px;
  height: 133.71px;
  display: grid;
  place-items: center;
}

.specialties-badge-ring {
  position: absolute;
  inset: 0;
  width: 133.714px;
  height: 133.71px;
  object-fit: contain;
  animation: badge-spin 16s linear infinite;
}

.specialties-badge-logo {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

@keyframes badge-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.specialties-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}

.specialties-tabs button {
  position: relative;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 19px 24px;
  border: 0;
  border-bottom: 1.906px solid #94a3b8;
  background: transparent;
  color: #94a3b8;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.specialties-tabs button:hover,
.specialties-tabs button:focus-visible {
  border-color: rgba(178, 149, 55, 0.62);
  background: rgba(178, 149, 55, 0.12);
  color: var(--gold);
}

.specialties-tabs button:focus-visible {
  outline: 2px solid rgba(178, 149, 55, 0.45);
  outline-offset: 2px;
}

.specialties-tabs .is-active,
.specialties-tabs .is-active:hover {
  border-color: var(--gold);
  background: rgba(178, 149, 55, 0.2);
  color: var(--gold);
  box-shadow: none;
}

.tab-icon-img {
  width: 22.875px;
  height: 22.875px;
  flex: 0 0 auto;
}

.specialties-card {
  margin-top: 12px;
  height: 484px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 17px;
  background: #f2f2f2;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.specialties-card.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.specialties-copy {
  width: 55%;
  padding: 92px 48px 64px 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}

.specialties-copy h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  transition: transform 320ms ease;
}

.specialties-copy p {
  width: 406px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
  transition: transform 320ms ease;
}

.specialties-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 6.2px rgba(255, 222, 115, 0.6);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.specialties-button img {
  width: 24px;
  height: 24px;
}

.specialties-media {
  width: 45%;
  margin: 0;
  overflow: hidden;
}

.specialties-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 28%;
  transform: scale(1.16);
  transform-origin: center 24%;
  transition:
    transform 520ms ease,
    opacity 260ms ease;
}

.specialties-card.is-changing .specialties-copy h3,
.specialties-card.is-changing .specialties-copy p {
  transform: translateY(8px);
}

.specialties-card.is-changing .specialties-media img {
  opacity: 0;
  transform: scale(1.2);
}

.differentials-section {
  height: 643px;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
}

.differentials-wrap {
  width: min(1277px, calc(100% - 48px));
  height: 409px;
  margin: 0 auto;
  padding: 60px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
}

.differentials-wrap h2 {
  margin: 0;
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.differentials-wrap h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.differentials-line {
  width: 100%;
  height: 1px;
  background: rgba(248, 248, 248, 0.1);
}

.differentials-grid {
  width: min(1215px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 183px));
  justify-content: center;
  gap: 52px;
}

.differential-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.differential-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1.2px solid var(--white);
  border-radius: 12px;
}

.differential-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.differential-item p {
  margin: 0;
  color: var(--white);
  font-size: 12.86px;
  font-weight: 400;
  line-height: 1.4;
}

.differentials-photo {
  position: relative;
  flex: 0 0 234px;
  height: 234px;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid #334155;
}

.differentials-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.doctors-section {
  min-height: 1412px;
  padding: 94px 0;
  background: var(--white);
  color: var(--ink);
}

.doctors-wrap {
  width: min(1024px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.doctors-wrap h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.doctors-wrap h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.doctor-card {
  width: 100%;
  height: 536px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  background: #f2f2f2;
}

.doctor-card-reverse {
  flex-direction: row-reverse;
}

.doctor-photo {
  flex: 0 0 500px;
  height: 564px;
  margin: -14px 0;
  overflow: hidden;
  background: var(--ink);
}

.doctor-photo-claudio {
  margin-left: -36px;
}

.doctor-photo-mayara {
  margin-right: -25px;
}

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

.doctor-photo-claudio img {
  object-position: 52% 24%;
}

.doctor-photo-mayara img {
  object-position: 51% 25%;
}

.doctor-copy {
  width: 424px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  margin: 88px 64px 0 auto;
}

.doctor-card-reverse .doctor-copy {
  margin: 88px auto 0 57px;
}

.doctor-copy h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.doctor-copy p {
  width: 382px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
}

.doctor-copy p:first-of-type {
  width: 424px;
}

.care-flow-section {
  min-height: 558px;
  background: var(--ink);
  color: var(--white);
}

.care-flow-wrap {
  width: min(1335px, calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
}

.care-flow-wrap h2 {
  margin: 0;
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.care-flow-wrap h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.care-flow-line {
  width: min(1277px, 100%);
  height: 1px;
  background: rgba(248, 248, 248, 0.1);
}

.care-flow-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 187px 41px 182.755px 41px 182.755px 41px 182.755px 41px 182.755px;
  align-items: center;
  justify-content: center;
  gap: 30px 0;
}

.care-step {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.care-step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1.2px solid var(--white);
  border-radius: 999px;
  color: #475569;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.care-step h3 {
  width: 100%;
  margin: 0;
  color: var(--gold);
  font-size: 12.86px;
  font-weight: 700;
  line-height: 1.4;
}

.care-step:nth-child(5) h3 {
  width: 130px;
}

.care-step p {
  margin: 0;
  color: var(--white);
  font-size: 12.86px;
  font-weight: 400;
  line-height: 1.4;
}

.care-step:first-child p {
  width: 152px;
}

.care-step:nth-child(3) p,
.care-step:nth-child(7) p {
  width: 195px;
}

.care-step:nth-child(5) p,
.care-step:nth-child(9) p {
  width: 208px;
}

.care-step-connector {
  position: relative;
  width: 41px;
  height: 1px;
  background: rgba(248, 248, 248, 0.24);
}

.care-step-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(248, 248, 248, 0.44);
  border-right: 1px solid rgba(248, 248, 248, 0.44);
  transform: translateY(-50%) rotate(45deg);
}

.care-flow-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 6.2px rgba(255, 222, 115, 0.6);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.care-flow-button img {
  width: 24px;
  height: 24px;
}

.testimonials-section {
  min-height: 765px;
  padding: 60px 0;
  background: var(--white);
  color: var(--ink);
}

.testimonials-wrap {
  width: min(1065px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
}

.testimonials-wrap h2 {
  margin: 0;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.testimonials-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 497.849px));
  justify-content: center;
  gap: 43px;
}

.testimonial-card {
  min-height: 207.953px;
  padding: 34px 46px;
  border-radius: 16px;
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}

.testimonial-card h3 {
  width: 356px;
  margin: 0;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.12;
}

.testimonial-card:nth-child(-n + 2) h3 {
  width: 271px;
}

.testimonial-card p {
  width: 405.849px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
}

.testimonials-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 6.2px rgba(255, 222, 115, 0.6);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.testimonials-button img {
  width: 24px;
  height: 24px;
}

.contact-section {
  min-height: 668px;
  padding: 52px 0;
  background: var(--white);
  color: var(--ink);
}

.contact-intro {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 421px 324px;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
}

.contact-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-intro h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.contact-intro p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-divider {
  width: min(1216px, calc(100% - 48px));
  height: 1px;
  margin: 35px auto 52px;
  background: rgba(15, 23, 42, 0.12);
}

.contact-content {
  width: min(1192px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 716px 446px;
  gap: 30px;
  align-items: stretch;
}

.contact-map {
  position: relative;
  min-height: 396px;
  overflow: hidden;
  border-radius: 20px;
  background: #e2e8f0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.contact-map-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.08) 100%
  );
}

.contact-map-link span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.84);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card {
  min-height: 396px;
  padding: 43px 57px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 21px;
  border-radius: 20px;
  background: #f2f2f2;
}

.contact-brand {
  width: 150px;
  height: 126.22px;
  display: grid;
  place-items: center;
}

.contact-brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.contact-card p {
  width: 332px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
}

.contact-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 6.2px rgba(255, 222, 115, 0.6);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.contact-button img {
  width: 24px;
  height: 24px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.contact-phone img {
  width: 24px;
  height: 24px;
}

.contact-phone-label {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
}

.contact-phone-number {
  color: #64748b;
  font-weight: 400;
  line-height: 1.12;
}

.faq-section {
  min-height: 767px;
  padding: 51px 0 12px;
  background: var(--white);
  color: var(--ink);
}

.faq-wrap {
  width: min(1212px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 381px 611px;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
}

.faq-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.faq-heading h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.faq-card {
  padding: 34px 46px;
  border-radius: 16px;
  background: #f2f2f2;
}

.faq-item {
  border-bottom: 1px solid #b8c4d9;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 22.95px 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-question img {
  width: 24px;
  height: 24px;
  transition: transform 220ms ease;
  transform: rotate(0deg);
}

.faq-question span {
  display: block;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.12;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows 320ms ease,
    opacity 220ms ease,
    padding 320ms ease;
  padding: 0;
}

.faq-answer p {
  min-height: 0;
  width: 405.849px;
  margin: 0;
  overflow: hidden;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
}

.faq-item.is-open .faq-question img {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding: 28px 0 28px 34px;
  opacity: 1;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-wrap {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 37px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-top,
.footer-contact-row,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  width: 82px;
  height: 69px;
  flex: 0 0 82px;
}

.footer-logo img {
  width: 82px;
  height: 69px;
  object-fit: contain;
}

.footer-socials-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-socials-group p,
.footer-back-top {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.22;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-socials a {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border: 1.058px solid var(--gold);
  border-radius: 10.577px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.footer-socials img {
  width: 21.153px;
  height: 21.153px;
}

.footer-back-top {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-socials a:hover,
.footer-socials a:focus-visible,
.footer-back-top:hover,
.footer-back-top:focus-visible,
.footer-column button:hover,
.footer-column button:focus-visible,
.footer-address:hover,
.footer-address:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: var(--gold);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(178, 149, 55, 0.12);
  transform: translateY(-1px);
}

.footer-back-top:focus-visible,
.footer-column button:focus-visible,
.footer-address:focus-visible,
.footer-email:focus-visible {
  outline: 2px solid rgba(178, 149, 55, 0.45);
  outline-offset: 4px;
}

.footer-back-top img {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.22);
}

.footer-main {
  display: grid;
  grid-template-columns: 354px 1fr;
  gap: 154px;
  align-items: start;
  padding: 26px 0 105px;
}

.footer-description {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.22;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 80px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-column h3 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.22;
}

.footer-column button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.22;
  text-align: left;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-address {
  max-width: 307px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.22;
}

.footer-address img {
  width: 24px;
  height: 24px;
}

.footer-email {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.22;
}

.footer-legal p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.22;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .navbar {
    width: min(100% - 64px, 980px);
  }

  .hero {
    width: 100%;
    min-height: 590px;
    aspect-ratio: auto;
    height: clamp(590px, 47vw, 684px);
    padding: 0;
  }

  .hero-content {
    width: min(100% - 64px, 980px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-top: 42px;
  }

  .hero-copy {
    width: min(648px, 100%);
    min-width: 0;
  }

  .hero h1 {
    max-width: 648px;
    font-size: clamp(38px, 4.2vw, 46px);
  }

  .hero-title-line {
    display: inline;
    white-space: normal;
  }

  .hero-tags {
    flex-wrap: wrap;
    gap: 7px;
    max-width: 354px;
  }

  .hero-action {
    width: min(567px, 100%);
  }

  .hero-action p {
    max-width: 567px;
    font-size: 15px;
  }

  .hero-button {
    min-height: 54px;
    padding: 16px 22px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-gutter: 5%;
  }

  html {
    width: 100%;
  }

  body {
    overflow-x: hidden;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
  }

  main,
  .site-footer {
    max-width: 100%;
  }

  .navbar,
  .hero-content,
  .about-wrap,
  .specialties-wrap,
  .differentials-wrap,
  .doctors-wrap,
  .care-flow-wrap,
  .testimonials-wrap,
  .contact-intro,
  .contact-content,
  .contact-divider,
  .faq-wrap,
  .footer-wrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding-inline: var(--mobile-gutter);
    margin-left: auto;
    margin-right: auto;
  }

  .navbar {
    min-height: 72px;
    gap: 18px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .nav-social {
    gap: 10px;
  }

  .hero {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: var(--ink);
    padding: 260px 24px 48px;
    box-sizing: border-box;
    margin: 0 0 28px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    transform: none;
  }

  .hero-bg::after {
    display: block;
    background: linear-gradient(
      177.62deg,
      rgba(0, 0, 0, 0) 23.82%,
      rgba(8, 12, 21, 0.7) 48.83%,
      rgb(15, 23, 42) 76.92%
    );
  }

  .hero-bg-picture {
    display: block;
    position: absolute;
    inset: 0;
  }

  .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 0;
    transform: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 340px;
    padding: 0;
    margin: 0;
  }

  .hero-copy,
  .hero-action,
  .hero-action p {
    width: 100%;
  }

  .hero-copy {
    align-items: flex-start;
    gap: 18px;
  }

  .hero-mobile-logo {
    width: 67px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-mobile-logo img {
    width: 67px;
    height: auto;
    object-fit: contain;
  }

  .hero h1 {
    width: 100%;
    max-width: 303px;
    font-size: 28px;
    line-height: 1.12;
    text-align: left;
  }

  .highlight-fill {
    display: inline;
    padding: 0 0.04em;
    background: var(--white);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .highlight-fill::before {
    display: none;
  }

  .hero-title-line {
    display: inline;
    white-space: normal;
  }

  .hero-tags {
    display: none;
  }

  .hero-action {
    width: 100%;
    max-width: 303px;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 0;
  }

  .hero-action p {
    width: 100%;
    max-width: 303px;
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.12;
    text-align: left;
  }

  .hero-button,
  .about-button,
  .specialties-button,
  .care-flow-button,
  .testimonials-button,
  .contact-button {
    width: auto;
    min-height: 52px;
    padding: 16px clamp(22px, 7vw, 28px);
    border-radius: 7px;
    font-size: 12.243px;
    gap: 9px;
  }

  .hero-button img,
  .about-button img,
  .specialties-button img,
  .care-flow-button img,
  .testimonials-button img,
  .contact-button img {
    width: 20.987px;
    height: 20.987px;
  }

  .about-section {
    padding: 36px 0;
    margin-top: 28px;
    content-visibility: visible;
  }

  .about-wrap {
    flex-direction: column;
    align-items: center;
  }

  .about-media {
    flex-basis: auto;
    width: 100%;
    max-width: 355px;
    height: auto;
    aspect-ratio: 355 / 555;
  }

  .about-copy,
  .about-copy h2,
  .about-copy p,
  .about-copy p:nth-of-type(1),
  .about-copy p:nth-of-type(2),
  .about-copy p:nth-of-type(3),
  .about-copy p:nth-of-type(4) {
    width: 100%;
  }

  .about-copy {
    gap: 18px;
  }

  .about-copy h2 {
    font-size: 24px;
  }

  .about-copy p {
    font-size: 15px;
    line-height: 1.3;
  }

  .specialties-section {
    padding: 64px 0;
  }

  .benefits-strip {
    max-width: 100%;
  }

  .benefits-strip-track {
    padding: 24px var(--mobile-gutter);
  }

  .specialties-head {
    margin-bottom: 28px;
  }

  .specialties-head h2 {
    width: 100%;
    font-size: 28px;
  }

  .specialties-badge {
    display: none;
  }

  .specialties-tabs {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    justify-content: flex-start;
  }

  .specialties-card {
    flex-direction: column;
    height: auto;
  }

  .specialties-copy {
    width: 100%;
    padding: 36px 22px 32px;
  }

  .specialties-copy p {
    width: 100%;
    font-size: 15px;
    line-height: 1.28;
  }

  .specialties-media {
    width: 100%;
    height: 360px;
  }

  .specialties-media img {
    transform: scale(1.04);
    object-position: center 20%;
  }

  .differentials-section {
    height: auto;
  }

  .differentials-wrap {
    height: auto;
    padding: 56px 0 32px;
    gap: 32px;
  }

  .differentials-wrap h2 {
    font-size: 28px;
  }

  .differentials-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 20px;
  }

  .differential-item p {
    width: 100%;
    max-width: 100%;
  }

  .differentials-photo {
    height: 190px;
  }

  .doctors-section {
    min-height: 0;
    padding: 64px 0;
  }

  .doctors-wrap {
    gap: 32px;
  }

  .doctors-wrap h2 {
    font-size: 32px;
  }

  .doctor-card,
  .doctor-card-reverse {
    height: auto;
    flex-direction: column;
  }

  .doctor-photo,
  .doctor-photo-claudio,
  .doctor-photo-mayara {
    width: 100%;
    height: auto;
    flex-basis: auto;
    aspect-ratio: 500 / 564;
    margin: 0;
  }

  .doctor-copy,
  .doctor-card-reverse .doctor-copy,
  .doctor-copy p,
  .doctor-copy p:first-of-type {
    width: 100%;
  }

  .doctor-copy,
  .doctor-card-reverse .doctor-copy {
    margin: 0;
    padding: 36px 28px 40px;
  }

  .doctor-copy p {
    font-size: 15px;
    line-height: 1.28;
  }

  .care-flow-section {
    min-height: 0;
  }

  .care-flow-wrap {
    padding: 56px 0 40px;
    gap: 32px;
  }

  .care-flow-wrap h2 {
    font-size: 28px;
  }

  .care-flow-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .care-step-connector {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .care-step-connector::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }

  .care-step,
  .care-step h3,
  .care-step p,
  .care-step:first-child p,
  .care-step:nth-child(3) p,
  .care-step:nth-child(5) p,
  .care-step:nth-child(7) p,
  .care-step:nth-child(9) p,
  .care-step:nth-child(11) p {
    width: 100%;
  }

  .care-step {
    max-width: 280px;
    margin: 0 auto;
  }

  .care-step p {
    font-size: 12px;
  }

  .testimonials-section {
    min-height: 0;
    padding: 56px 0 64px;
  }

  .testimonials-wrap {
    gap: 32px;
  }

  .testimonials-wrap h2 {
    font-size: 28px;
  }

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

  .testimonial-card,
  .testimonial-card h3,
  .testimonial-card:nth-child(-n + 2) h3,
  .testimonial-card p {
    width: 100%;
  }

  .testimonial-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .testimonial-card h3 {
    font-size: 17px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.28;
  }

  .contact-section {
    min-height: 0;
    padding: 56px 0 64px;
  }

  .contact-intro,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-intro h2 {
    font-size: 28px;
  }

  .contact-intro p,
  .contact-card p {
    font-size: 15px;
    line-height: 1.28;
  }

  .contact-divider {
    margin: 28px auto 32px;
  }

  .contact-content {
    gap: 20px;
  }

  .contact-map {
    min-height: 320px;
  }

  .contact-card,
  .contact-card p {
    width: 100%;
  }

  .contact-card {
    min-height: 0;
    padding: 32px 24px;
  }

  .faq-section {
    min-height: 0;
    padding: 48px 0 8px;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-heading h2 {
    font-size: 28px;
  }

  .faq-card {
    padding: 28px 22px;
  }

  .faq-question span,
  .faq-answer p {
    width: 100%;
  }

  .faq-question span {
    font-size: 18px;
  }

  .faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    padding: 16px 0 16px 34px;
    opacity: 1;
  }

  .footer-wrap {
    width: 90%;
    max-width: 90%;
    padding: 24px 0 32px;
  }

  .footer-top,
  .footer-main,
  .footer-contact-row,
  .footer-legal {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-main {
    gap: 40px;
    padding: 18px 0 28px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-contact-row {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: none;
  }

  .hero {
    padding-top: 220px;
  }

  .nav-links {
    display: none;
  }

  .hero-action {
    padding-bottom: 0;
  }

  .hero-tags span {
    white-space: normal;
  }

  .specialties-head h2 {
    font-size: 28px;
  }

  .specialties-tabs button {
    font-size: 12px;
    padding: 16px 18px;
  }

  .differentials-wrap h2 {
    font-size: 28px;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .differential-item p {
    width: min(230px, 100%);
  }

  .doctors-wrap h2 {
    font-size: 28px;
  }

  .doctor-copy h3 {
    font-size: 24px;
  }

  .care-flow-wrap h2 {
    font-size: 28px;
  }

  .care-flow-button {
    width: auto;
  }

  .testimonials-wrap h2 {
    font-size: 28px;
  }

  .testimonials-button {
    width: auto;
  }

  .contact-intro h2 {
    font-size: 28px;
  }

  .contact-button {
    width: auto;
  }

  .contact-phone {
    font-size: 15px;
  }

  .faq-heading h2 {
    font-size: 28px;
  }

  .faq-question span {
    font-size: 18px;
  }

  .footer-socials a {
    width: 46px;
    height: 46px;
  }

  .footer-back-top {
    gap: 10px;
  }
}
