.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

main#topo [data-final-cta-note] {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

.topnav,
nav[data-topnav] {
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background-color 200ms ease, -webkit-backdrop-filter 200ms ease, backdrop-filter 200ms ease;
}

nav[data-topnav].is-scrolled {
  background-color: rgba(17, 19, 24, 0.8);
  background: rgba(17 19 24 / 21%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

#porque h2[data-porque-title] {
  font-size: clamp(32px, 6vw, 46px);
}

@media (min-width: 768px) {
  #tratamentos h2[data-tratamentos-title] {
    line-height: 64px;
  }
}

.glass-nav {
  backdrop-filter: blur(20px);
}

.hero-gradient {
  background: linear-gradient(to right, #160b00 0%, transparent 79%);
}



.compare-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

[data-compare] {
  -webkit-user-select: none;
  user-select: none;
}

[data-compare-range],
[data-compare-handle] {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

[data-procedimentos-marquee] {
  --procedimentos-duration: 160s;
  --procedimentos-gutter: 1rem;
}

[data-procedimentos-marquee] {
  --procedimentos-gutter: 1rem;
}

@media (min-width: 640px) {
  [data-procedimentos-marquee] {
    --procedimentos-gutter: 1.5rem;
  }
}

[data-procedimentos-marquee]::before,
[data-procedimentos-marquee]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(72px, 12vw, 220px);
  pointer-events: none;
  z-index: 10;
}

[data-procedimentos-marquee]::before {
  left: 0;
  background: linear-gradient(to right, rgba(17, 19, 24, 0.98) 0%, rgba(17, 19, 24, 0.92) 22%, rgba(17, 19, 24, 0.65) 52%, rgba(17, 19, 24, 0) 100%);
}

[data-procedimentos-marquee]::after {
  right: 0;
  background: linear-gradient(to left, rgba(17, 19, 24, 0.98) 0%, rgba(17, 19, 24, 0.92) 22%, rgba(17, 19, 24, 0.65) 52%, rgba(17, 19, 24, 0) 100%);
}

[data-procedimentos-track] {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: var(--procedimentos-gutter);
  width: max-content;
  will-change: transform;
  animation: procedimentos-marquee var(--procedimentos-duration) linear infinite;
}

[data-procedimentos-marquee="reverse"] [data-procedimentos-track] {
  animation-direction: reverse;
}

@media (hover: hover) and (pointer: fine) {
  [data-procedimentos-marquee]:hover [data-procedimentos-track] {
    animation-play-state: paused;
  }
}

[data-procedimentos-item] {
  flex: 0 0 auto;
  width: clamp(150px, 42vw, 240px);
}

[data-procedimentos-item] img {
  filter: grayscale(90%) saturate(1.6) hue-rotate(6deg) brightness(1) contrast(1);
  transition: filter 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  [data-procedimentos-item]:hover img {
    filter: none;
  }
}

[data-procedimentos-item]:active img,
[data-procedimentos-item]:focus-visible img {
  filter: none;
}

#procedimentos[data-procedimentos-filter-off] [data-procedimentos-item] img {
  filter: none;
}

@supports not (gap: 1rem) {
  [data-procedimentos-track] {
    gap: 0;
  }

  [data-procedimentos-item] {
    margin-right: var(--procedimentos-gutter);
  }

  [data-procedimentos-track] > [data-procedimentos-item]:last-child {
    margin-right: 0;
  }
}

@keyframes procedimentos-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - (var(--procedimentos-gutter) * 0.5)), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-procedimentos-track] {
    animation: none;
    transform: none;
  }
}

.bio-bg {
  background-image: url("img/bacground-who.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bio-bg-overlay {
  background: radial-gradient(circle at 60% 40%, rgba(227, 205, 160, 0.10) 0%, rgba(17, 19, 24, 0.92) 55%, rgba(17, 19, 24, 1) 100%);
}

.eligibility-bg {
  background-image: url("img/bacground-who-01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.eligibility-bg-overlay {
  background: radial-gradient(circle at 65% 35%, rgba(227, 205, 160, 0.08) 0%, rgba(17, 19, 24, 0.90) 55%, rgba(17, 19, 24, 1) 100%);
}

.scroll-card {
  will-change: transform;
}

.eligibility-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 300ms ease, border-color 300ms ease;
  will-change: transform, opacity;
}

.eligibility-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.eligibility-item.is-active {
    border-color: rgba(227, 205, 160, 0.55);
    background-color: rgb(145 134 60 / 35%);
}
.grayscale70 {
    --tw-grayscale: grayscale(60%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
/*Gold Bar*/
main > section {
  position: relative;
}

main > section:not(:first-of-type)::before,
.goldbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background-image:
    linear-gradient(90deg, rgba(227, 205, 160, 0) 0%, rgba(227, 205, 160, 0.95) 50%, rgba(227, 205, 160, 0) 100%),
    linear-gradient(90deg, rgba(227, 205, 160, 0) 0%, rgba(227, 205, 160, 0.22) 50%, rgba(227, 205, 160, 0) 100%);
  background-size: 30% 2px, 100% 4px;
  background-position: center top, center top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 5;
}

.testimonial-card {
  flex: 0 0 100%;
  background-size: 240px auto;
}

.testimonials-stars-bg {
  background-image: url("img/depoimentos-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

main#topo section.goldbar h2[data-testimonials-title] {
  font-size: 30px;
}

@media (min-width: 768px) {
  .final-cta-bg h2[data-final-cta-title] {
    line-height: 60px;
  }
}

.contact-maps-bg {
  background-image: url("img/maps.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.contact-maps-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(227, 205, 160, 0.08) 0%, rgba(17, 19, 24, 0.86) 55%, rgba(17, 19, 24, 0.95) 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-maps-bg > .container {
  position: relative;
  z-index: 10;
}

.purpose-bg {
  background-image: url("img/background-0002.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#sobre .bg-surface-container-high\/40 {
  background-color: rgb(17 19 22 / 59%);
}

.purpose-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 80%, rgba(227, 205, 160, 0.06) 0%, rgba(17, 19, 24, 0.88) 60%, rgba(17, 19, 24, 0.95) 80%);
  pointer-events: none;
  z-index: 0;
}

.purpose-bg > .container {
  position: relative;
  z-index: 10;
}

#procedimentos[data-procedimentos] {
  background-image: url("img/3757.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#procedimentos[data-procedimentos]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(227, 205, 160, 0.08) 0%, rgba(17, 19, 24, 0.90) 12%, rgba(17, 19, 24, 0.96) 100%);
  pointer-events: none;
  z-index: 0;
}

#procedimentos[data-procedimentos] > .container {
  position: relative;
  z-index: 10;
}

.results-bg {
  background-image: url("img/3757.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.results-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(227, 205, 160, 0.08) 0%, rgba(17, 19, 24, 0.88) 10%, rgba(17, 19, 24, 0.95) 100%);
  pointer-events: none;
  z-index: 0;
}

.results-bg > .container {
  position: relative;
  z-index: 10;
}

.treatments-bg {
  background-image: url("img/3757.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.treatments-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(227, 205, 160, 0.08) 0%, rgba(17, 19, 24, 0.90) 5%, rgba(17, 19, 24, 0.96) 100%);
  pointer-events: none;
  z-index: 0;
}

.treatments-bg > .container {
  position: relative;
  z-index: 10;
}

.journey-bg {
  background-image: url("img/3757.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.journey-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(227, 205, 160, 0.08) 0%, rgba(17, 19, 24, 0.90) 5%, rgba(17, 19, 24, 0.96) 100%);
  pointer-events: none;
  z-index: 0;
}

.journey-bg > .container {
  position: relative;
  z-index: 10;
}

.final-cta-bg {
  background-image: url("img/bacground-who-02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.final-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(227, 205, 160, 0.08) 0%, rgba(17, 19, 24, 0.90) 55%, rgba(17, 19, 24, 0.96) 100%);
  pointer-events: none;
  z-index: 0;
}

.final-cta-bg > .container {
  position: relative;
  z-index: 10;
}
/* Media Queries */
@media (min-width: 768px) {
  .testimonial-card {
    flex-basis: calc((100% - 2rem) / 2);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex-basis: calc((100% - 4rem) / 3);
  }
}
@media (max-width: 640px) {
  .hero-gradient {
    background: linear-gradient(to top, rgb(17 19 24 / 99%) 31%, rgba(17, 19, 24, 0.74) 53%, rgba(17, 19, 24, 0.28) 64%, rgba(17, 19, 24, 0) 100%);
  }

  [data-hero-section] {
    background-color: rgb(17 19 24);
  }
}

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

  .eligibility-item {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (min-width: 320px) and (max-width: 639px) {
  html {
    scroll-padding-top: 5.5rem;
  }
  .purpose-bg {
  background-image: url("img/background-0002.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-position-x: -415px; 
}
.purpose-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 80%, rgba(227, 205, 160, 0.06) 10%, rgba(17, 19, 24, 0.88) 70%, rgba(17, 19, 24, 0.95) 100%);
  pointer-events: none;
  z-index: 0;
}

  body {
    text-rendering: geometricPrecision;
  }

  nav > div {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  nav a span {
    letter-spacing: 0.18em;
    font-size: 10px;
  }

  nav {
    background-color: rgba(17, 19, 24, 0.92);
  }

  nav[data-topnav] {
    background-color: transparent;
  }

  nav[data-topnav].is-scrolled {
    background-color: rgba(17, 19, 24, 0.92);
    background: rgba(17, 19, 24, 0.92);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  section:first-of-type [data-hero-title] {
    font-size: 33px;
    line-height: 41px;
    text-align: center;
  }

  section:first-of-type [data-hero-lead] {
    text-align: center;
  }

  section:first-of-type [data-hero-tagline] {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #sobre [data-sobre-title] {
    text-align: center;
    font-size: 32px;
    line-height: 46px;
  }

  #resultados [data-results-kicker],
  #resultados [data-results-title],
  #porque [data-porque-title] {
    text-align: center;
  }

  #resultados [data-results-lead] {
    text-align: left;
  }

  #porque [data-porque-title] {
    line-height: 42px;
  }

  #tratamentos [data-tratamentos-title] {
    font-size: 32px;
    line-height: 42px;
  }

  [data-eligibility-kicker],
  [data-eligibility-title] {
    text-align: center;
  }

  #jornada [data-jornada-title] {
    font-size: 27px;
  }

  #jornada [data-jornada-lead] {
    font-size: 17px;
  }

  [data-testimonials-title] {
    font-size: 28px;
  }

  #dra-vitoria [data-bio-title] {
    line-height: 49px;
    margin-top: 3px;
    margin-bottom: 3px;
  }

  #dra-vitoria [data-bio-lead-1],
  #dra-vitoria [data-bio-lead-2],
  #dra-vitoria [data-bio-lead-3] {
    text-align: left;
  }

  #dra-vitoria [data-bio-copy] {
    text-align: center;
  }

  #contato [data-contact-whatsapp] {
    text-align: left;
  }

  #contato [data-contact-title] {
    text-align: center;
  }

  .final-cta-bg [data-final-cta-title] {
    font-size: 32px;
  }

  .final-cta-bg [data-final-cta-lead] {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .final-cta-bg [data-final-cta-note] {
    font-size: 11px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  section:first-of-type [data-hero-copy] {
    margin-top: 380px;
    text-align: center;
  }

  section:first-of-type [data-hero-ctas] {
    text-align: center;
  }

  section:first-of-type span.uppercase {
    font-size: 0.75rem;
  }

  [data-hero-section] {
    height: 1130px;
  }

  main a[href="#contato"][class~="bg-gradient-to-br"] {
    width: 100%;
    max-width: 22rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  main a[href="#tratamentos"][class~="border"] {
    width: 100%;
    max-width: 22rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #sobre,
  #resultados,
  #porque,
  #tratamentos,
  [data-eligibility],
  #jornada,
  [data-testimonials-carousel],
  #dra-vitoria,
  #contato,
  .final-cta-bg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #porque h2 {
    font-size: clamp(28px, 8.2vw, 44px);
  }

  #sobre .text-lg,
  #porque .text-lg,
  #resultados .text-lg,
  #tratamentos .text-lg,
  #dra-vitoria .text-lg,
  #contato .text-lg,
  .final-cta-bg .text-lg {
    font-size: 1rem;
    line-height: 1.75rem;
  }

  #resultados .gap-16 {
    gap: 2.5rem;
  }

  #resultados [data-compare-handle] > div {
    width: 3rem;
    height: 3rem;
  }

  #resultados [data-compare-handle] span.material-symbols-outlined {
    font-size: 16px;
  }

  section:first-of-type [data-hero-image] {
    /*object-position: 65% 85%;*/
    transform: none;
    image-rendering: -webkit-optimize-contrast;
  }

  #porque img[data-colorize-on-view] {
    object-position: 50% 20%;
  }

  #contato .w-14.h-14 {
    width: 3rem;
    height: 3rem;
  }

  #contato .text-xl {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  #dra-vitoria img {
    object-position: 50% 20%;
  }
}
