:root {
  --color-header-bg: #f5f5f5;
  --color-hero-top: #d8c6ab;
  --color-hero-bottom: #f4f0e9;
  --color-title-light: #d8b98c;
  --color-title-dark: #57370d;
  --color-text: #666666;
  --color-kicker: #9c8d7e;
  --color-button: #998b7f;
  --color-button-text: #f5f7f9;
  --color-nav: #4a4a4a;
  --color-nav-active: #8f6f46;
  --color-wave-base: #f7f7f7;
  --color-wave-soft: rgba(255, 255, 255, 0.38);

  --container-width: 1280px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--container-width));
  margin-inline: auto;
}

/* padronização tipográfica */
.main-nav a,
.hero-kicker,
.hero-title-light,
.hero-title-strong,
.hero-text,
.hero-cta {
  letter-spacing: 0;
  font-style: normal;
  text-transform: none;
  font-kerning: normal;
  font-synthesis: none;
}

.hero-cta,
.all-services-cta,
.results-marquee__cta,
.location-premium__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 317px;
  min-height: 56px;
  padding: 5px 24px;
  border-radius: 6px;
  background: #998b7f;
  color: #f5f7f9;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-cta-icon,
.all-services-cta-icon,
.results-marquee__cta-icon,
.location-premium__button-icon {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta-icon svg,
.all-services-cta-icon svg,
.results-marquee__cta-icon svg,
.location-premium__button-icon svg {
  width: 100%;
  height: 100%;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-header-bg);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 6px;
}

.header-logo img {
  width: 124px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-right: 60px;
}

.main-nav a {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-nav);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-nav-active);
}

.main-nav a.active::before {
  content: "";
  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 2px;
  background: #8f6f46;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #f3efe8;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-image: linear-gradient(0deg, #00000000 0%, #d7c5a9 100%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: 630px 650px;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-top: 0;
  padding-bottom: 40px;
}

.hero-copy {
  width: 100%;
  margin-left: 0;
  padding-top: 12px;
  min-height: auto;
  display: block;
}

.hero-kicker {
  display: block;
  color: var(--color-kicker);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 6px;
}

.hero-title {
  margin-bottom: 18px;
}

.hero-title-light,
.hero-title-strong {
  display: block;
  font-size: 35px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0;
  -webkit-text-stroke: 1.3px currentColor;
  text-shadow: 0 0 0.25px currentColor;
}

.hero-title-light {
  color: var(--color-title-light);
}

.hero-title-strong {
  color: var(--color-title-dark);
  margin-top: 4px;
}

.hero-text {
  width: 630px;
  color: #666666;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 20px;
}

.hero-cta {
  align-self: flex-start;
  width: auto;
  flex: 0 0 auto;
}

.hero-media {
  position: relative;
  width: 650px;
  min-height: 611px;
}

.media-collage {
  position: relative;
  width: 650px;
  height: 611px;
  overflow: visible;
}

.media-card {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: translateX(70px);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.media-collage.is-visible .media-card {
  opacity: 1;
  transform: translateX(0);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-card-1 {
  width: 325px;
  height: 325px;
  left: 64px;
  top: 41px;
  border-radius: 18px;
  z-index: 3;
  overflow: hidden;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.media-card-1 img {
  object-position: 52% 50%;
}

.media-card-2 {
  width: 221px;
  height: 221px;
  right: 7px;
  top: -8px;
  border-radius: 14px;
  z-index: 5;
  transition: transform 1s ease 0.08s, opacity 1s ease 0.08s;
}

.media-card-3 {
  width: 520px;
  height: 520px;
  right: -100px;
  top: 199px;
  border-radius: 18px 18px 0 0;
  z-index: 2;
  transition: transform 1.1s ease 0.16s, opacity 1.1s ease 0.16s;
}

.media-card-3 img {
  object-position: center center;
}

/* ESCONDE NO DESKTOP */
.media-card-4-placeholder {
  display: none;
  position: absolute;
  width: 178px;
  height: 178px;
  left: 37px;
  top: 430px;
  opacity: 0;
  pointer-events: none;
  background-image: url("assets/5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.floating-card-4 {
  position: absolute;
  width: 158px;
  height: 158px;
  left: calc(50% + 70px);
  top: 420px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 20;
}

.floating-card-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ONDAS */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 210px;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.hero-wave::before,
.hero-wave::after {
  content: "";
  position: absolute;
  left: -3%;
  width: 106%;
  bottom: 0;
}

.hero-wave::before {
  height: 200px;
  background: rgba(255, 255, 255, 0.5);
  clip-path: polygon(
    0% 46%,
    8% 52%,
    18% 47%,
    31% 38%,
    45% 27%,
    58% 18%,
    70% 17%,
    80% 24%,
    89% 34%,
    100% 28%,
    100% 100%,
    0% 100%
  );
  z-index: 1;
}

.hero-wave::after {
  height: 182px;
  background: rgba(255, 255, 255, 0.68);
  clip-path: polygon(
    0% 55%,
    10% 49%,
    22% 42%,
    36% 36%,
    50% 38%,
    63% 47%,
    75% 56%,
    86% 58%,
    100% 50%,
    100% 100%,
    0% 100%
  );
  z-index: 2;
}

.wave-layer-3 {
  position: absolute;
  left: -3%;
  width: 106%;
  bottom: 0;
  height: 148px;
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(
    0% 60%,
    11% 57%,
    23% 52%,
    37% 45%,
    51% 40%,
    65% 43%,
    79% 52%,
    91% 60%,
    100% 58%,
    100% 100%,
    0% 100%
  );
  z-index: 3;
}

/* TABLET */
@media (max-width: 1280px) {
  .hero-inner {
    grid-template-columns: minmax(520px, 1fr) minmax(560px, 650px);
    gap: 24px;
  }

  .hero-copy,
  .hero-text {
    width: 100%;
    text-align: center;
  }

  .hero-media,
  .media-collage {
    width: 610px;
  }

  .media-card-1 {
    left: 44px;
  }

  .media-card-3 {
    right: -10px;
  }
}

/* MOBILE */
@media (max-width: 1100px) {
  :root {
    --header-height: 74px;
  }

  .media-card-4-placeholder {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-overlay {
    background-image: linear-gradient(180deg, rgba(215, 197, 169, 0.38) 0%, rgba(232, 223, 209, 0.12) 52%, rgba(243, 240, 234, 0) 100%);
    opacity: 1;
  }

  .hero {
    background: linear-gradient(180deg, #e2e0dc 0%, #f2eee7 100%);
  }

  .floating-card-4 {
    display: none;
  }

  .container {
    width: min(100% - 24px, 100%);
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    justify-content: center;
  }

  .header-logo {
    margin-left: 0;
  }

  .header-logo img {
    width: 115px;
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 2px;
    padding-bottom: 18px;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding-top: 10px;
    text-align: center;
  }

  .hero-kicker {
    font-size: 20px;
    line-height: 1.3em;
    margin-bottom: 8px;
  }

  .hero-title {
    margin-bottom: 16px;
  }

  .hero-title-light,
  .hero-title-strong {
    font-size: 27px;
    line-height: 1.05em;
  }

  .hero-title-strong {
    max-width: 320px;
    margin-inline: auto;
    margin-top: 3px;
  }

  .hero-text {
    width: 100%;
    max-width: 356px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.6em;
    margin-bottom: 24px;
  }

  .hero-cta {
    align-self: center;
    width: auto;
    flex: 0 0 auto;
    min-width: 312px;
    min-height: 58px;
    padding: 6px 24px;
    border-radius: 6px;
    font-size: 15px;
    gap: 10px;
  }

  .hero-cta-icon {
    width: 22px;
    height: 22px;
  }

  .hero-media {
    width: 100%;
    min-height: 330px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
  }

  .media-collage {
    width: 100%;
    max-width: 364px;
    height: 322px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    z-index: 2;
  }

  .media-card-1 {
    width: 150px;
    height: 150px;
    left: 22px;
    top: 70px;
    border-radius: 14px;
    z-index: 3;
  }

  .media-card-2 {
    width: 90px;
    height: 100px;
    right: -14px;
    top: 74px;
    border-radius: 12px;
    z-index: 5;
  }

  .media-card-3 {
    width: 250px;
    height: 259px;
    right: 4px;
    top: 122px;
    border-radius: 0;
    z-index: 2;
  }

  .media-card-4-placeholder {
    width: 80px;
    height: 80px;
    left: -20px;
    top: 180px;
    border-radius: 8px;
    opacity: 1;
    pointer-events: auto;
    z-index: 6;
  }

  .hero-wave {
    left: -12px;
    right: -12px;
    width: auto;
    height: 92px;
    bottom: -1px;
    z-index: 4;
  }

  .hero-wave::before {
    left: 0;
    width: 100%;
    bottom: 0;
    height: 66px;
    clip-path: polygon(
      0% 63%,
      11% 52%,
      23% 61%,
      37% 54%,
      50% 66%,
      65% 58%,
      79% 68%,
      100% 56%,
      100% 100%,
      0% 100%
    );
    transform: none;
  }

  .hero-wave::after {
    left: 0;
    width: 100%;
    bottom: 0;
    height: 204px;
    clip-path: polygon(
      0% 79%,
      15% 68%,
      30% 76%,
      48% 67%,
      63% 79%,
      80% 70%,
      100% 78%,
      100% 100%,
      0% 100%
    );
    transform: translateY(8px);
  }

  .wave-layer-3 {
    left: 0;
    width: 100%;
    bottom: 0;
    height: 46px;
    clip-path: polygon(
      0% 84%,
      18% 73%,
      35% 81%,
      53% 72%,
      70% 84%,
      87% 75%,
      100% 83%,
      100% 100%,
      0% 100%
    );
  }
}

/* SECTION — SERVIÇOS EM DESTAQUE */
.services-highlight {
  position: relative;
  background: #ffffff;
  padding: 72px 0 60px;
}

.services-highlight-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.service-highlight-card {
  text-align: center;
}

.service-highlight-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  transform: translateX(0);
}

.service-highlight-icon {
  width: 85px;
  height: 85px;
  object-fit: contain;
  display: block;
}

.service-highlight-title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #5a3710;
}

.service-highlight-text {
  max-width: 420px;
  margin: 10px auto 0;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: #222222;
  text-align: center;
}

@media (max-width: 1100px) {
  .services-highlight {
    padding: 54px 0 44px;
  }

  .services-highlight-inner {
    gap: 28px;
  }

  .service-highlight-icon-wrap {
    margin-bottom: 16px;
  }

  .service-highlight-icon {
    width: 52px;
    height: 52px;
  }

  .service-highlight-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-highlight-text {
    max-width: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .services-highlight {
    padding: 34px 0 28px;
  }

  .services-highlight-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-highlight-card {
    text-align: center;
  }

  .service-highlight-icon-wrap {
    justify-content: center;
    margin-bottom: 12px;
    transform: translateX(0) translateY(0);
  }

  .service-highlight-icon {
    width: 60px;
    height: 60px;
  }

  .service-highlight-title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
  }

  .service-highlight-text {
    max-width: 300px;
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
    line-height: 1.8;
  }
}

/* SECTION — SOBRE NÓS */
.about-clinic {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 26%,
    #ffffff 26%,
    #e8dcc897 58%,
    #e8dcc8 78%,
    #e8dcc8 100%
  );
  padding: 88px 0 96px;
}

.about-clinic-inner {
  display: grid;
  grid-template-columns: 590px 610px;
  justify-content: space-between;
  align-items: start;
  gap: 54px;
}

.about-clinic-content {
  width: 630px;
  padding: 20px;
  margin-top: 118px;
}

.about-clinic-title {
  margin: 0 0 14px;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  color: #57370d;
}

.about-clinic-subtitle {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #222222;
}

.about-clinic-text {
  max-width: 590px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: #666666;
}

.about-clinic-media {
  position: relative;
  width: 610px;
  height: 589px;
  margin-top: 86px;
  padding: 20px;
}

.about-clinic-media-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 488px;
  height: 488px;
  border-radius: 30px;
  overflow: hidden;
}

.about-clinic-media-main img,
.about-clinic-media-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-clinic-media-small {
  position: absolute;
  left: -8px;
  bottom: -18px;
  width: 244px;
  height: 244px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 1100px) {
  .about-clinic {
    padding: 64px 0 70px;
    background: linear-gradient(180deg, #f6f6f6 0%, #f6f6f6 28%, #eee7dc 52%, #e9ddca 100%);
  }

  .about-clinic-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-clinic-content {
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .about-clinic-media {
    width: 100%;
    max-width: 610px;
    height: 520px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .about-clinic-media-main {
    width: 430px;
    height: 430px;
    right: 20px;
  }

  .about-clinic-media-small {
    width: 214px;
    height: 214px;
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .about-clinic {
    padding: 84px 0 48px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 22%, #efe8dd 52%, #e9ddca 100%);
  }

  .about-clinic-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-clinic-content {
    width: 100%;
    padding: 0 16px;
  }

  .about-clinic-title {
    margin-bottom: 12px;
    font-size: 25px;
    text-align: center;
  }

  .about-clinic-subtitle {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
  }

  .about-clinic-text {
    max-width: none;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: center;
  }

  .about-clinic-media {
    width: 100%;
    max-width: 340px;
    height: 360px;
    margin: 6px auto 0;
    padding: 0;
  }

  .about-clinic-media-main {
    width: 270px;
    height: 270px;
    top: 0;
    right: 0;
    border-radius: 22px;
  }

  .about-clinic-media-small {
    width: 136px;
    height: 136px;
    left: 0;
    bottom: 12px;
    border-radius: 18px;
  }
}

/* SECTION — CUIDADOS COMPLETOS */
.all-services {
  background: #ffffff;
  padding: 58px 0 74px;
}

.all-services-inner {
  padding: 10px 0 0;
}

.all-services-heading {
  text-align: center;
  margin-bottom: 42px;
}

.all-services-title {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  color: #57370d;
}

.all-services-subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: #222222;
}

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 62px;
  row-gap: 56px;
  margin: 0 auto;
}

.all-services-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.all-services-card-icon {
  flex: 0 0 65px;
  width: 65px;
  height: 65px;
  margin-top: 0;
}

.all-services-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.all-services-card-content {
  flex: 1;
}

.all-services-card-title {
  margin: 0 0 9px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  color: #57370d;
}

.all-services-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  font-weight: 400;
  color: #222222;
}

.all-services-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 1100px) {
  .all-services {
    padding: 48px 0 62px;
  }

  .all-services-heading {
    margin-bottom: 34px;
  }

  .all-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 40px;
  }

  .all-services-card-title {
    font-size: 22px;
  }

  .all-services-card-text {
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .all-services {
    padding: 38px 0 48px;
  }

  .all-services-heading {
    margin-bottom: 28px;
  }

  .all-services-title {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .all-services-subtitle {
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
  }

  .all-services-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
    column-gap: 0;
  }

  .all-services-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .all-services-card-icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }

  .all-services-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .all-services-card-title {
    font-size: 18px;
    margin-bottom: 8px;
    text-align: center;
  }

  .all-services-card-text {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    max-width: 320px;
  }

  .all-services-cta-wrap {
    margin-top: 34px;
  }

  .all-services-cta {
    min-width: 292px;
    min-height: 50px;
    padding: 5px 20px;
    font-size: 14px;
    gap: 10px;
  }

  .all-services-cta-icon {
    width: 21px;
    height: 21px;
  }
}

/* SECTION — ETAPAS DO TRATAMENTO */
.treatment-steps {
  position: relative;
  overflow: hidden;
  background: #d8c39a;
  padding: 86px 0 96px;
}

.treatment-steps-inner {
  position: relative;
  z-index: 2;
}

.treatment-steps-heading {
  margin-bottom: 34px;
  text-align: center;
}

.treatment-steps-title {
  padding-top: 2vw;
  margin: 0 0 8px;
  color: #57370d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.treatment-steps-subtitle {
  padding-top: 1vw;
  padding-bottom: 0.6vw;
  margin: 0;
  color: #f5f1e8;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.treatment-steps-mobile-hint {
  display: none;
}

.treatment-steps-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 317px));
  justify-content: center;
  column-gap: 14px;
  row-gap: 20px;
}

.treatment-video-card {
  min-width: 0;
  width: 100%;
}

.treatment-video-card-head {
  margin-bottom: 8px;
  text-align: center;
}

.treatment-video-card-title {
  margin: 0 0 2px;
  color: #57370d;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}

.treatment-video-card-desc {
  max-width: 250px;
  margin: 0 auto;
  color: #222222;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
}

.treatment-video-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 317.75px;
  margin: 0 auto;
  cursor: pointer;
  flex-shrink: 0;
}

.treatment-video-frame video {
  display: block;
  width: 100% !important;
  min-width: 100%;
  height: auto;
  aspect-ratio: 317.75 / 564.88;
  border-radius: 18px;
  background: transparent;
  object-fit: cover;
}

.treatment-video-frame video:fullscreen,
.treatment-video-frame video:-webkit-full-screen,
.treatment-video-frame video:-moz-full-screen,
.treatment-video-frame video:-ms-fullscreen {
  width: auto !important;
  height: auto !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  background: #000;
  border-radius: 0;
}

.treatment-video-touch-layer {
  display: none;
}

.treatment-steps-shape {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.treatment-steps-shape-top {
  top: 0;
  height: 84px;
  background: linear-gradient(
    180deg,
    #f5f5f5 0%,
    #f5f5f5 34%,
    rgba(255, 255, 255, 0.58) 34%,
    rgba(255, 255, 255, 0.18) 100%
  );
}

.treatment-steps-shape-bottom {
  bottom: 0;
  height: 68px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 42%,
    rgba(255, 255, 255, 0.42) 100%
  );
}

@media (max-width: 1100px) {
  .treatment-steps {
    padding: 72px 0 82px;
  }

  .treatment-steps-heading {
    margin-bottom: 28px;
  }

  .treatment-steps-videos {
    grid-template-columns: repeat(3, minmax(0, 280px));
    column-gap: 12px;
  }

  .treatment-video-frame {
    max-width: 280px;
  }

  .treatment-video-card-title {
    font-size: 16px;
  }

  .treatment-video-card-desc {
    max-width: 220px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .treatment-steps {
    padding: 58px 0 64px;
  }

  .treatment-steps-heading {
    margin-bottom: 20px;
    padding: 0 12px;
  }

  .treatment-steps-title {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.25;
  }

  .treatment-steps-subtitle {
    max-width: 320px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.45;
  }

  .treatment-steps-mobile-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    color: #57370d;
    opacity: 0.92;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  .treatment-steps-mobile-hint-arrow {
    display: inline-block;
    animation: treatmentSwipeHint 1.2s ease-in-out infinite;
  }

  @keyframes treatmentSwipeHint {
    0% {
      transform: translateX(0);
      opacity: 0.55;
    }
    50% {
      transform: translateX(8px);
      opacity: 1;
    }
    100% {
      transform: translateX(0);
      opacity: 0.55;
    }
  }

  .treatment-steps-videos {
    --mobile-video-width: 317.75px;

    display: flex;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: calc(50vw - (var(--mobile-video-width) / 2));
    padding-right: calc(50vw - (var(--mobile-video-width) / 2));
    padding-bottom: 6px;
  }

  .treatment-steps-videos::-webkit-scrollbar {
    display: none;
  }

  .treatment-video-card {
    flex: 0 0 var(--mobile-video-width);
    width: var(--mobile-video-width);
    max-width: var(--mobile-video-width);
    scroll-snap-align: center;
  }

  .treatment-video-card-head {
    margin-bottom: 10px;
  }

  .treatment-video-card-title {
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 1.2;
  }

  .treatment-video-card-desc {
    max-width: 250px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.15;
  }

  .treatment-video-frame {
    width: var(--mobile-video-width);
    max-width: var(--mobile-video-width);
    min-width: var(--mobile-video-width);
    touch-action: manipulation;
  }

  .treatment-video-frame video {
    width: 100%;
    aspect-ratio: 317.75 / 564.88;
    border-radius: 18px;
  }

  .treatment-video-touch-layer {
    display: block;
    position: absolute;
    inset: 0 0 54px 0;
    z-index: 3;
    margin: 0;
    border: 0;
    padding: 0;
    border-radius: 18px 18px 0 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .treatment-video-touch-layer:focus {
    outline: none;
  }

  .treatment-steps-shape-top {
    height: 56px;
  }

  .treatment-steps-shape-bottom {
    height: 50px;
  }
}

@media (min-width: 768px) {
  .treatment-video-frame video::-webkit-media-controls-fullscreen-button {
    display: none !important;
  }

  .treatment-video-frame video::-webkit-media-controls-enclosure {
    overflow: hidden;
  }
}

/* SECTION — RESULTADOS EM ESTEIRA INFINITA */
.results-marquee {
  --results-bg: #f9f9f9;
  --results-title: #57370d;
  --results-text: #666666;
  --results-cta-bg: #998b7f;
  --results-cta-text: #f5f7f9;

  --results-item-width-desktop: 354px;
  --results-item-width-tablet: 300px;
  --results-item-width-mobile: 78vw;

  --results-gap-desktop: 26px;
  --results-gap-tablet: 18px;
  --results-gap-mobile: 14px;

  --results-speed-desktop: 68s;
  --results-speed-tablet: 34s;
  --results-speed-mobile: 34s;

  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--results-bg);
  padding: 84px 0 72px;
}

.results-marquee__inner {
  width: 100%;
}

.results-marquee__header {
  margin-bottom: 34px;
  padding: 0 16px;
  text-align: center;
}

.results-marquee__title {
  margin: 0 0 8px;
  color: var(--results-title);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.results-marquee__subtitle {
  margin: 0;
  color: var(--results-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.results-marquee__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.results-marquee__track {
  display: flex;
  width: max-content;
  animation: resultsMarqueeScroll var(--results-speed-desktop) linear infinite;
  will-change: transform;
}

.results-marquee__group {
  display: flex;
  gap: var(--results-gap-desktop);
  padding-right: var(--results-gap-desktop);
}

.results-marquee__item {
  flex: 0 0 var(--results-item-width-desktop);
  width: var(--results-item-width-desktop);
}

.results-marquee__item img {
  display: block;
  width: 100%;
  aspect-ratio: 354 / 380;
  object-fit: cover;
  border-radius: 20px;
  background: #ebebeb;
}

.results-marquee__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  padding: 0 16px;
}

@media (hover: hover) and (pointer: fine) {
  .hero-cta:hover,
  .all-services-cta:hover,
  .results-marquee__cta:hover,
  .location-premium__button:hover,
  .testimonials-carousel__arrow:hover,
  .site-footer__logo-link:hover,
  .site-footer__contact-item:hover,
  .site-footer__credits-link:hover,
  .location-premium__link:hover {
    opacity: 0.95;
    transform: translateY(-1px);
  }

  .results-marquee__viewport:hover .results-marquee__track {
    animation-play-state: paused;
  }

  .site-footer__logo-link:hover {
    transform: scale(1.02);
  }

  .site-footer__contact-item:hover .site-footer__icon {
    transform: scale(1.1);
  }

  .location-premium__link:hover,
  .site-footer__credits-link:hover {
    transform: none;
    opacity: 0.75;
  }
}

@keyframes resultsMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--results-gap-desktop) / 2)));
  }
}

@media (max-width: 1100px) {
  .results-marquee {
    padding: 72px 0 64px;
  }

  .results-marquee__header {
    margin-bottom: 28px;
  }

  .results-marquee__title {
    font-size: 24px;
  }

  .results-marquee__subtitle {
    font-size: 16px;
  }

  .results-marquee__track {
    animation-duration: var(--results-speed-tablet);
  }

  .results-marquee__group {
    gap: var(--results-gap-tablet);
    padding-right: var(--results-gap-tablet);
  }

  .results-marquee__item {
    flex-basis: var(--results-item-width-tablet);
    width: var(--results-item-width-tablet);
  }
}

@media (max-width: 767px) {
  .results-marquee {
    padding: 58px 0 54px;
  }

  .results-marquee__header {
    margin-bottom: 22px;
    padding: 0 14px;
  }

  .results-marquee__title {
    font-size: 22px;
    line-height: 1.25;
  }

  .results-marquee__subtitle {
    max-width: 320px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.45;
  }

  .results-marquee__track {
    animation-duration: var(--results-speed-mobile);
  }

  .results-marquee__group {
    gap: var(--results-gap-mobile);
    padding-right: var(--results-gap-mobile);
  }

  .results-marquee__item {
    flex-basis: var(--results-item-width-mobile);
    width: var(--results-item-width-mobile);
  }

  .results-marquee__item img {
    border-radius: 18px;
  }

  .results-marquee__cta-wrap {
    margin-top: 28px;
    padding: 0 14px;
  }

  .results-marquee__cta {
    min-width: 292px;
    min-height: 50px;
    padding: 5px 20px;
    gap: 10px;
    font-size: 14px;
  }

  .results-marquee__cta-icon {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-marquee__track {
    animation: none;
  }
}

/* SECTION — DEPOIMENTOS */
.testimonials-section {
  background: #f5f5f5;
  padding: 84px 0 88px;
}

.testimonials-section__inner {
  position: relative;
}

.testimonials-section__header {
  margin-bottom: 34px;
  text-align: center;
}

.testimonials-section__title {
  margin: 0;
  color: #57370d;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  padding-top: 30px;
}

.testimonial-card__body {
  min-height: 258px;
  padding: 52px 20px 18px;
  border-radius: 14px;
  background: #f4f4f4;
  text-align: center;
}

.testimonial-card__avatar {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #0c776a;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.testimonial-card:nth-child(2n) .testimonial-card__avatar {
  background: #7d99a8;
}

.testimonial-card:nth-child(3n) .testimonial-card__avatar {
  background: #0b8f82;
}

.testimonial-card:nth-child(4n) .testimonial-card__avatar {
  background: #055c52;
}

.testimonial-card__name {
  margin: 0 0 4px;
  color: #000000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-card__time {
  margin: 0 0 10px;
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.testimonial-card__rating {
  margin-bottom: 10px;
  color: #f4b400;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}

.testimonial-card__rating span {
  color: #4285f4;
  letter-spacing: 0;
  margin-left: 4px;
  font-size: 14px;
  vertical-align: middle;
}

.testimonial-card__text {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 12px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.testimonial-card__more {
  margin: 0;
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.testimonials-carousel__arrow {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #ececec;
  color: #757575;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.testimonials-carousel__arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.testimonials-carousel__dots {
  display: none;
}

@media (max-width: 1100px) {
  .testimonials-section {
    padding: 72px 0 76px;
  }

  .testimonials-section__header {
    margin-bottom: 30px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .testimonial-card__body {
    min-height: 248px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 58px 0 60px;
  }

  .testimonials-section__header {
    margin-bottom: 22px;
    text-align: center;
  }

  .testimonials-section__title {
    font-size: 22px;
    line-height: 1.25;
  }

  .testimonials-carousel {
    display: block;
  }

  .testimonials-carousel__arrow {
    display: none;
  }

  .testimonials-carousel__viewport {
    overflow: hidden;
  }

  .testimonials-carousel__track {
    gap: 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding-top: 34px;
  }

  .testimonial-card__body {
    min-height: 260px;
    padding: 54px 18px 18px;
    border-radius: 14px;
  }

  .testimonial-card__avatar {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .testimonial-card__name {
    font-size: 16px;
  }

  .testimonial-card__time {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .testimonial-card__rating {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .testimonial-card__text {
    font-size: 15px;
    line-height: 1.45;
    -webkit-line-clamp: 4;
  }

  .testimonial-card__more {
    font-size: 13px;
  }

  .testimonials-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .testimonials-carousel__dot {
    width: 28px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: #cfcfcf;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .testimonials-carousel__dot.is-active {
    background: #7c7c7c;
  }
}

/* SECTION — LOCALIZAÇÃO PREMIUM */
.location-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(216, 195, 154, 0.18) 0%, transparent 32%),
    linear-gradient(180deg, #f5f5f5 0%, #f7f3ed 100%);
  padding: 96px 0;
}

.location-premium__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: center;
  gap: 64px;
}

.location-premium__content {
  max-width: 620px;
}

.location-premium__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(153, 139, 127, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #998b7f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-premium__title {
  margin: 0 0 14px;
  color: #57370d;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.08;
}

.location-premium__subtitle {
  max-width: 560px;
  margin: 0 0 30px;
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.location-premium__info-card {
  display: grid;
  grid-template-columns: 1fr 1px 190px;
  align-items: stretch;
  gap: 24px;
  max-width: 620px;
  margin-bottom: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(153, 139, 127, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(87, 55, 13, 0.06);
  backdrop-filter: blur(6px);
}

.location-premium__info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.location-premium__info-label {
  color: #998b7f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-premium__info-value {
  color: #222222;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.location-premium__divider {
  width: 1px;
  background: rgba(153, 139, 127, 0.18);
}

.location-premium__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.location-premium__link {
  color: #57370d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.location-premium__map-wrap {
  display: flex;
  justify-content: flex-end;
}

.location-premium__map-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 14px;
  border: 1px solid rgba(153, 139, 127, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 48px rgba(87, 55, 13, 0.1);
  backdrop-filter: blur(8px);
}

.location-premium__map-topbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.location-premium__map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f7f3ed;
  color: #57370d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.location-premium__map-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #998b7f;
  box-shadow: 0 0 0 4px rgba(153, 139, 127, 0.14);
}

.location-premium__map-frame {
  overflow: hidden;
  border-radius: 24px;
  background: #e9e9e9;
}

.location-premium__map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.location-premium__map-floating-card {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(153, 139, 127, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(87, 55, 13, 0.08);
  backdrop-filter: blur(8px);
}

.location-premium__map-floating-label {
  color: #998b7f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-premium__map-floating-card strong {
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.location-premium__map-floating-card small {
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .location-premium {
    padding: 78px 0;
  }

  .location-premium__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-premium__content {
    max-width: 100%;
    text-align: center;
  }

  .location-premium__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .location-premium__info-card {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
  }

  .location-premium__divider {
    display: none;
  }

  .location-premium__actions {
    justify-content: center;
  }

  .location-premium__map-wrap {
    justify-content: center;
  }

  .location-premium__map-card {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .location-premium {
    padding: 58px 0;
  }

  .location-premium__inner {
    gap: 28px;
  }

  .location-premium__eyebrow {
    margin-bottom: 12px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .location-premium__title {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .location-premium__subtitle {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .location-premium__info-card {
    padding: 18px;
    border-radius: 18px;
    gap: 14px;
    margin-bottom: 22px;
  }

  .location-premium__info-value {
    font-size: 20px;
    line-height: 1.35;
  }

  .location-premium__actions {
    flex-direction: column;
    gap: 14px;
  }

  .location-premium__button {
    min-width: 292px;
    min-height: 50px;
    padding: 5px 20px;
    gap: 10px;
    font-size: 14px;
  }

  .location-premium__button-icon {
    width: 21px;
    height: 21px;
  }

  .location-premium__link {
    font-size: 15px;
  }

  .location-premium__map-card {
    padding: 10px;
    border-radius: 22px;
  }

  .location-premium__map-topbar {
    margin-bottom: 10px;
  }

  .location-premium__map-badge {
    font-size: 12px;
    padding: 7px 10px;
  }

  .location-premium__map-frame {
    border-radius: 18px;
  }

  .location-premium__map-frame iframe {
    height: 320px;
  }

  .location-premium__map-floating-card {
    position: static;
    max-width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
  }
}

/* FOOTER */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #d2b98a 0%, #ccb182 100%);
  padding: 60px 0 24px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: radial-gradient(circle at left center, rgba(255, 255, 255, 0.08) 0%, transparent 62%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.site-footer__logo-link {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.site-footer__logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer__contacts {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.site-footer__icon {
  width: 18px;
  height: 18px;
  color: #fff6ea;
  transition: transform 0.3s ease;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__legal,
.site-footer__credits {
  margin: 0;
  color: #fff6ea;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.site-footer__credits-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  margin-left: 4px;
  transition: opacity 0.2s ease;
}

@media (max-width: 1100px) {
  .site-footer {
    padding: 48px 0 24px;
  }

  .site-footer__main {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 32px;
  }

  .site-footer__contacts {
    justify-content: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 40px 0 20px;
  }

  .site-footer::before {
    width: 100%;
    background: radial-gradient(circle at center top, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  }

  .site-footer__logo {
    width: 120px;
  }

  .site-footer__contacts {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .site-footer__contact-item {
    font-size: 14px;
  }

  .site-footer__bottom {
    padding-top: 20px;
    gap: 8px;
  }

  .site-footer__legal,
  .site-footer__credits {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .media-card,
  .results-marquee__track,
  .testimonials-carousel__track,
  .treatment-steps-mobile-hint-arrow {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.scroll-hero-btn {
  position: fixed;
  right: 18px;
  bottom: 9px; /* ajuste fino para ficar abaixo do WhatsApp */
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #a99b8d;
  color: #f7f3ed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  z-index: 9998;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease,
    background-color 0.22s ease;
}

.scroll-hero-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-hero-btn:hover {
  background: #998b7f;
}

.scroll-hero-btn svg {
  width: 20px;
  height: 20px;
}

/* mobile */
@media (max-width: 767px) {
  .scroll-hero-btn {
    right: 14px;
    bottom: 86px; /* ajuste fino mobile */
    width: 44px;
    height: 44px;
  }

  .scroll-hero-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .scroll-hero-btn {
    transition: none;
  }
}

@media (max-width: 767px) {
  .scroll-hero-btn {
    display: none !important;
  }
}