*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

:root {
  color-scheme: only light;
  --color-ink: #181716;
  --color-gold: #69500b;
  --color-gold-mid: #806413;
  --color-gold-soft: #c7a341;
  --color-paper: #fbfaf8;
  --color-paper-muted: #f0eee9;
  --color-paper-deep: #e7e0d6;
  --color-muted: #514d48;
  --color-soft: #5f574d;
  --color-line: rgb(105 80 11 / 18%);
  --focus-ring: #4f3b08;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--color-paper) 0%, #f8f6f2 46%, var(--color-paper) 100%);
  color: var(--color-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: rgb(212 175 55 / 20%);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--color-ink);
  color: var(--color-paper);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.site-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding-top: 4.5rem;
  overflow: clip;
  background: var(--color-paper);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--color-line);
  background: rgb(251 250 248 / 88%);
  backdrop-filter: blur(16px);
  animation: navEntrance 650ms var(--ease-out) 80ms both;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-gold);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.nav-logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border: 1px solid rgb(201 162 39 / 48%);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.site-nav-links a,
.nav-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  color: var(--color-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease;
}

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

.nav-cta {
  border: 1px solid var(--color-gold);
  padding-inline: 1.35rem;
  color: var(--color-gold);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--color-gold);
  color: #fff;
}

.hero-media,
.hero-content {
  position: relative;
}

.hero-content {
  width: 54%;
}

.hero-media {
  width: 46%;
}

.hero-media {
  order: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 3.25rem) clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3.25rem) clamp(0.25rem, 1vw, 1rem);
  background:
    radial-gradient(circle at 80% 16%, rgb(199 163 65 / 18%), transparent 26rem),
    linear-gradient(90deg, var(--color-paper) 0%, #f4f1eb 18%, var(--color-paper-deep) 70%);
  isolation: isolate;
  animation: heroPanelEntrance 820ms var(--ease-out) 140ms both;
}

.hero-content {
  order: 1;
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 2.5vw, 3rem) clamp(3.5rem, 7vw, 6rem) clamp(4rem, 7vw, 8rem);
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.25rem 0.125rem;
  color: var(--color-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-ink);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-divider {
  width: 1px;
  height: 1rem;
  background: var(--color-line);
}

.hero-copy {
  width: min(100%, 42rem);
}

.marquee-ribbon {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: color-mix(in srgb, var(--color-paper-muted) 76%, white);
  padding-block: 0.8rem;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 1.5rem;
  color: color-mix(in srgb, var(--color-gold-mid) 82%, var(--color-ink));
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-gold-soft);
}

.section-eyebrow {
  display: block;
  margin-bottom: 0.875rem;
  color: var(--color-gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-heading {
  margin: 0 0 1.5rem;
  color: var(--color-ink);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading strong {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 700;
}

.section-body {
  max-width: 38rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  text-wrap: pretty;
}

.section-body-secondary {
  margin-top: 1rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-line);
}

.section-tag {
  margin: 0 0 0.875rem;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--color-ink);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-header-right {
  max-width: 24rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
  text-align: right;
  text-wrap: pretty;
}

.sobre {
  scroll-margin-top: 4.5rem;
  background: var(--color-paper);
}

.sobre-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: 80rem;
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.sobre-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 42%);
  background: var(--color-paper-muted);
  box-shadow: 0 0 0 1px rgb(110 82 0 / 10%);
}

.sobre-image-frame::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgb(255 255 255 / 72%);
  box-shadow: 0 0 0 1px rgb(110 82 0 / 14%);
  pointer-events: none;
}

.sobre-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.01) brightness(1.02);
}

.sobre-content {
  padding-block: 1rem;
}

.sobre-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}

.sobre-cred {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cred-label {
  color: var(--color-gold-mid);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cred-value {
  color: var(--color-ink);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.procedimentos {
  scroll-margin-top: 4.5rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--color-line);
  background: var(--color-paper-muted);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

.proc-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.875rem;
  padding: 2.25rem 2rem;
  background: var(--color-paper);
  transition: background 300ms ease, transform 300ms var(--ease-out);
}

.proc-card:hover {
  background: #fff;
  transform: translateY(-0.125rem);
}

.proc-number {
  color: var(--color-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.proc-name {
  margin: 0;
  color: var(--color-ink);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
}

.proc-desc {
  flex: 1;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  text-wrap: pretty;
}

.proc-link {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--color-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap 200ms ease, color 200ms ease;
}

.proc-link:hover,
.proc-link:focus-visible {
  gap: 0.875rem;
  color: var(--color-ink);
}

.proc-link svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  stroke: currentColor;
}

.resultados {
  scroll-margin-top: 4.5rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--color-line);
  background: var(--color-paper);
}

.resultados-header {
  max-width: 34rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.resultados-header .section-title {
  margin-inline: auto;
}

.resultados-header .section-header-right {
  max-width: 31rem;
  margin: 1.25rem auto 0;
  text-align: center;
}

.before-after-showcase {
  max-width: 28rem;
  margin-inline: auto;
}

.before-after-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 28rem;
  margin-inline: auto;
}

.before-after-slider {
  --position: 50%;
  --slider-width: 100%;
  position: relative;
  width: min(100%, 30rem);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-paper-muted);
  isolation: isolate;
  user-select: none;
  justify-self: center;
  touch-action: pan-y;
}

.ba-pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-pane img {
  position: absolute;
  inset: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.ba-after {
  width: var(--position);
  z-index: 2;
}

.ba-after img {
  width: var(--slider-width);
}

.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 5;
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  background: rgb(0 0 0 / 42%);
  color: var(--color-paper);
  backdrop-filter: blur(4px);
  padding: 0.45rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ba-label-before {
  left: 1rem;
}

.ba-label-after {
  right: 1rem;
}

.ba-divider {
  position: absolute;
  inset: 0 auto 0 var(--position);
  z-index: 6;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-gold);
  box-shadow: 0 0 10px rgb(0 0 0 / 12%);
  transform: translate(-50%, -50%);
}

.ba-handle::before,
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.ba-handle::before {
  left: 0.68rem;
  transform: translateY(-50%) rotate(-45deg);
}

.ba-handle::after {
  right: 0.68rem;
  transform: translateY(-50%) rotate(135deg);
}

.ba-handle span {
  display: none;
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.before-after-slider:focus-within {
  outline: 3px solid var(--focus-ring);
  outline-offset: 0.35rem;
}

.before-after-copy h3 {
  margin: 0.4rem 0 0.5rem;
  color: var(--color-ink);
  font-size: 1.25rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.before-after-copy {
  padding-inline: 1rem;
  text-align: center;
}

.before-after-copy .proc-number {
  display: none;
}

.before-after-copy p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
}

.faq {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(0, 2fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  scroll-margin-top: 4.5rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--color-line);
  background: var(--color-paper-muted);
}

.faq-left {
  position: sticky;
  top: 6.25rem;
}

.faq-left .section-title {
  margin-bottom: 1.25rem;
}

.faq-left p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  text-wrap: pretty;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.75rem;
  padding: 1.625rem 0;
  background: none;
  color: var(--color-ink);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-wrap: pretty;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform 350ms var(--ease-out);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 450ms var(--ease-out);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  text-wrap: pretty;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1.5rem;
}

.contato {
  scroll-margin-top: 4.5rem;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 86% 20%, rgb(199 163 65 / 12%), transparent 23rem),
    linear-gradient(135deg, #e7e2d9, #ebe6de 72%);
  color: var(--color-ink);
}

.contato-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  max-width: 80rem;
  margin-inline: auto;
}

.contato .section-tag {
  color: var(--color-gold);
}

.contact-title {
  max-width: 12ch;
  margin: 0 auto 1.5rem;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.contato-copy {
  text-align: center;
}

.contato-copy p:last-child {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  text-wrap: pretty;
}

.contato-details {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--color-line);
  padding-top: 1.75rem;
}

.contact-row {
  display: grid;
  gap: 0.35rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact-label {
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 11rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-paper-muted);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-action {
  display: inline-flex;
  width: fit-content;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  padding: 1rem 2rem;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  background: var(--color-gold);
  color: #fff;
}

.site-footer {
  background: #46382c;
  color: rgb(251 250 248 / 78%);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 7vw, 7rem) 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(14rem, 1.35fr) minmax(8rem, 0.7fr) minmax(12rem, 0.9fr);
  gap: clamp(2rem, 7vw, 7rem);
  max-width: 64rem;
  margin-inline: auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--color-paper);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

.footer-logo-mark {
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgb(214 173 107 / 56%);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  max-width: 16rem;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  text-wrap: pretty;
}

.footer-contact p + p {
  margin-top: 0.7rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-nav span,
.footer-contact > span {
  margin-bottom: 0.45rem;
  color: var(--color-gold-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: rgb(251 250 248 / 76%);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-logo:hover,
.footer-logo:focus-visible {
  color: var(--color-gold-soft);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: 64rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(251 250 248 / 13%);
  color: rgb(251 250 248 / 48%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom span:last-of-type {
  justify-self: end;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroFadeUp 700ms var(--ease-out) 100ms both;
}

.hero-copy h1 {
  margin: 0 0 1.65rem;
  max-width: 12ch;
  color: var(--color-ink);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(4rem, 7vw, 5.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  animation: heroFadeUp 800ms var(--ease-out) 180ms both;
}

.hero-title-line {
  display: block;
}

.hero-title-mobile-word {
  display: none;
}

.hero-title-accent {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 700;
}

.hero-description {
  margin: 0 0 2rem;
  max-width: 32rem;
  color: color-mix(in srgb, var(--color-muted) 92%, var(--color-ink));
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  animation: heroFadeUp 850ms var(--ease-out) 280ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  animation: heroFadeUp 900ms var(--ease-out) 380ms both;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--color-gold);
  padding: 1.25rem 3.5rem;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 500ms ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateY(100%);
  transition: transform 500ms ease;
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: #fff;
}

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
  transform: translateY(0);
}

.nav-link:focus-visible,
.hero-cta:focus-visible,
.site-nav-links a:focus-visible,
.nav-logo:focus-visible,
.nav-cta:focus-visible,
.proc-link:focus-visible,
.faq-question:focus-visible,
.contact-action:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 0.35rem;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navEntrance {
  from {
    opacity: 0;
    transform: translateY(-0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelEntrance {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

  .marquee-track {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding-right: 1.5rem;
    padding-left: 4rem;
  }

  .site-nav-links {
    gap: 1.25rem;
  }

  .sobre-section {
    grid-template-columns: 1fr;
  }

  .sobre-image-frame {
    max-width: 28rem;
  }

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

  .faq-left {
    position: static;
  }

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

  .section-header-right {
    text-align: left;
  }

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

}

@media (max-width: 767px) {
  .site-hero {
    flex-direction: column;
    height: auto;
    min-height: 100svh;
    padding-top: 4rem;
    overflow: visible;
  }

  .site-nav {
    gap: 0.75rem;
    min-height: 4rem;
  }

  .site-nav-links {
    display: none;
  }

  .nav-logo {
    font-size: 1.05rem;
  }

  .nav-logo-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .nav-cta {
    min-height: 2.5rem;
    padding-inline: 0.9rem;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
  }

  .hero-media,
  .hero-content {
    width: 100%;
  }

  .hero-media {
    order: 1;
    height: min(42svh, 22rem);
    min-height: 15rem;
    padding: 0.75rem 1rem 0;
  }

  .hero-content {
    order: 2;
    height: auto;
    justify-content: center;
    min-height: calc(58svh - 4rem);
    padding: 1.75rem 1.5rem 2.5rem;
  }

  .hero-nav {
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.625rem;
    letter-spacing: 0.24em;
  }

  .hero-kicker {
    margin-bottom: 0.875rem;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
  }

  .hero-copy h1 {
    margin-bottom: 1.25rem;
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 4.25rem);
    line-height: 1.02;
  }

  .hero-description {
    margin-bottom: 1.5rem;
    font-size: 0.975rem;
    line-height: 1.55;
  }

  .hero-cta {
    width: 100%;
    min-height: 3.25rem;
    padding: 1rem 1.5rem;
    letter-spacing: 0.12em;
  }

  .sobre-section {
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }

  .sobre-image-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .section-eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.42em;
  }

  .section-heading {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .section-body {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .sobre-credentials {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .procedimentos,
  .faq,
  .resultados,
  .contato {
    padding: 4rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .resultados-header {
    margin-bottom: 2rem;
  }

  .before-after-showcase,
  .before-after-card {
    gap: 1.5rem;
  }

  .before-after-slider {
    width: min(100%, 24rem);
  }

  .ba-label {
    top: 0.75rem;
    min-height: 1.75rem;
  }

  .ba-label-before {
    left: 0.75rem;
  }

  .ba-label-after {
    right: 0.75rem;
  }

  .proc-card {
    padding: 1.75rem 1.5rem;
  }

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

  .faq-question {
    min-height: 4rem;
    padding-block: 1.25rem;
  }

  .faq-question span {
    font-size: 0.9375rem;
  }

  .contato-panel {
    grid-template-columns: 1fr;
  }

  .contact-action {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    letter-spacing: 0.12em;
  }

  .footer-bottom span:last-of-type {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .hero-media {
    height: 34svh;
    min-height: 13rem;
  }

  .hero-content {
    min-height: calc(66svh - 4rem);
    padding-inline: 1.25rem;
  }

  .hero-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .hero-media {
    height: 31svh;
    min-height: 11rem;
  }

  .hero-content {
    min-height: calc(69svh - 4rem);
    padding: 1.25rem 1rem 1.5rem;
  }

  .hero-kicker {
    margin-bottom: 0.75rem;
  }

  .hero-copy h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 12vw, 2.85rem);
  }

  .hero-description {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 0.875rem;
  }

  .hero-cta {
    min-height: 3rem;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }

  .nav-link {
    min-height: 2rem;
    font-size: 0.5625rem;
    letter-spacing: 0.18em;
  }
}


/* Refinamento visual - rodada Codex */
:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-ink: #1d1a17;
  --color-gold: #7a5a13;
  --color-gold-mid: #9a7624;
  --color-gold-soft: #d2b46a;
  --color-paper: #fffdf9;
  --color-paper-muted: #f4efe7;
  --color-paper-deep: #e8ddcf;
  --color-muted: #625950;
  --color-soft: #766b5f;
  --color-line: rgb(122 90 19 / 16%);
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background:
    linear-gradient(180deg, #fffdf9 0%, #f8f2ea 45%, #fffaf4 100%);
  font-family: var(--font-body);
}

.nav-logo,
.hero-copy h1,
.section-heading,
.section-title,
.proc-name,
.before-after-copy h3,
.contact-title,
.footer-logo {
  font-family: var(--font-display);
}

.site-nav {
  min-height: 4.75rem;
  background: rgb(255 253 249 / 84%);
  box-shadow: 0 12px 34px rgb(72 49 18 / 5%);
}

.site-nav-links a {
  position: relative;
  transition: color 360ms ease, transform 360ms var(--ease-luxury);
}

.site-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.4rem;
  width: 1.6rem;
  height: 1px;
  background: var(--color-gold-soft);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 520ms var(--ease-luxury);
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  transform: translateY(-1px);
}

.site-nav-links a:hover::after,
.site-nav-links a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta,
.hero-cta,
.contact-action,
.faq-cta,
.footer-cta {
  border-radius: 999px;
  box-shadow: 0 14px 34px rgb(122 90 19 / 8%);
  transition: color 420ms ease, background 420ms ease, border-color 420ms ease, transform 420ms var(--ease-luxury), box-shadow 420ms ease;
}

.nav-cta:hover,
.hero-cta:hover,
.contact-action:hover,
.faq-cta:hover,
.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgb(122 90 19 / 15%);
}

.hero-copy h1 {
  font-size: clamp(4.3rem, 7.4vw, 6.35rem);
  font-weight: 600;
}

.hero-title-accent {
  color: #8b6819;
}

.hero-description {
  max-width: 34rem;
  font-weight: 400;
}

.marquee-ribbon {
  position: relative;
  padding-block: 0.95rem;
  background: linear-gradient(90deg, #fbf6ee, #fffdf9 48%, #f7efe3);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  animation-duration: 48s;
}

.marquee-item {
  gap: 1.85rem;
  padding-inline: 1.85rem;
  color: #7f5f18;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
}

.procedimentos {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(255 253 249 / 72%), transparent 45%),
    linear-gradient(180deg, #f4efe7, #fbf7f1 100%);
}

.procedimentos::before {
  content: "";
  position: absolute;
  inset: 3rem auto auto clamp(1.5rem, 5vw, 5rem);
  width: 4.5rem;
  height: 1px;
  background: var(--color-gold-soft);
}

.proc-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  border: 0;
  background: transparent;
}

.proc-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border: 1px solid rgb(122 90 19 / 13%);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 84%), rgb(255 250 242 / 94%));
  box-shadow: 0 18px 48px rgb(69 47 19 / 7%);
  transition: transform 520ms var(--ease-luxury), box-shadow 520ms ease, border-color 520ms ease, background 520ms ease;
}

.proc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold-soft), transparent);
  transform: scaleX(0);
  transition: transform 600ms var(--ease-luxury);
}

.proc-card:hover {
  border-color: rgb(122 90 19 / 25%);
  background: #fffdf9;
  box-shadow: 0 24px 70px rgb(69 47 19 / 12%);
  transform: translateY(-0.45rem) scale(1.012);
}

.proc-card:hover::before {
  transform: scaleX(1);
}

.proc-icon {
  position: absolute;
  top: 1.6rem;
  right: 1.65rem;
  color: rgb(122 90 19 / 18%);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  transition: color 420ms ease, transform 520ms var(--ease-luxury);
}

.proc-card:hover .proc-icon {
  color: rgb(122 90 19 / 32%);
  transform: translateY(-0.2rem);
}

.proc-number {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.proc-name {
  max-width: 12rem;
  font-size: clamp(1.65rem, 2.1vw, 2.15rem);
  font-style: italic;
  font-weight: 600;
}

.proc-desc {
  font-size: 0.92rem;
  font-weight: 400;
}

.proc-link {
  margin-top: 0.85rem;
}

.before-after-slider {
  border-radius: 8px;
  box-shadow: 0 22px 62px rgb(69 47 19 / 12%);
}

.ba-label {
  border-radius: 999px;
}

.faq {
  position: relative;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
  background:
    linear-gradient(130deg, #fffdf9 0%, #f6efe5 100%);
}

.faq-left {
  border: 1px solid rgb(122 90 19 / 14%);
  border-radius: 8px;
  background: rgb(255 253 249 / 72%);
  padding: clamp(1.75rem, 3vw, 2.35rem);
  box-shadow: 0 20px 60px rgb(69 47 19 / 8%);
}

.faq-cta,
.footer-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  border: 1px solid var(--color-gold);
  padding: 0.95rem 1.35rem;
  color: var(--color-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-cta:hover,
.footer-cta:hover {
  background: var(--color-gold);
  color: #fff;
}

.faq-list {
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgb(122 90 19 / 12%);
  border-radius: 8px;
  background: rgb(255 253 249 / 78%);
  transition: transform 420ms var(--ease-luxury), box-shadow 420ms ease, border-color 420ms ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgb(122 90 19 / 24%);
  box-shadow: 0 16px 44px rgb(69 47 19 / 8%);
  transform: translateY(-2px);
}

.faq-question {
  min-height: 4.4rem;
  padding: 1.35rem 1.45rem;
}

.faq-question span {
  font-weight: 600;
}

.faq-answer p {
  padding-inline: 1.45rem;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1.45rem;
}

.contato {
  background:
    radial-gradient(circle at 88% 14%, rgb(210 180 106 / 14%), transparent 24rem),
    linear-gradient(135deg, #eee5d9, #fbf7f0 76%);
}

.contact-map,
.contact-action {
  border-radius: 8px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #3d3026 0%, #5b4633 100%);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(210 180 106 / 54%), transparent);
}

.footer-main,
.footer-bottom {
  max-width: 76rem;
}

.footer-logo {
  gap: 0.9rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
}

.footer-logo-mark {
  width: 3rem;
  height: 3rem;
}

.footer-brand p,
.footer-contact p {
  max-width: 24rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-nav span,
.footer-contact > span {
  font-size: 0.68rem;
  color: var(--color-gold-soft);
}

.footer-nav a {
  font-size: 0.92rem;
  transition: color 220ms ease, transform 220ms var(--ease-luxury);
}

.footer-nav a:hover {
  transform: translateX(0.2rem);
}

.footer-bottom {
  font-size: 0.66rem;
}

@media (max-width: 1024px) {
  .proc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-left {
    position: static;
  }
}

@media (max-width: 767px) {
  .hero-copy h1 {
    font-size: clamp(3.05rem, 13vw, 4.45rem);
  }

  .marquee-item {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

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

  .proc-card {
    min-height: auto;
  }

  .before-after-showcase {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
  }

  .ba-carousel-button {
    width: 2.5rem;
    height: 2.5rem;
  }

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

  .faq-left {
    padding: 1.5rem;
  }
}


/* Ajuste de contraste do rodape */
.site-footer .footer-cta {
  border-color: rgb(210 180 106 / 70%);
  color: #f6e7bd;
  box-shadow: 0 16px 38px rgb(0 0 0 / 12%);
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  background: #d2b46a;
  color: #3d3026;
}


/* Minimal motion pass - rodada Codex */
:root {
  --color-brown-min: #8a765f;
  --color-brown-soft: #b7a58d;
  --color-surface-soft: #fffaf3;
  --reveal-distance: 1.35rem;
}

html {
  scroll-padding-top: 5rem;
}

.site-nav {
  border-bottom-color: rgb(138 118 95 / 14%);
  box-shadow: 0 10px 30px rgb(79 58 35 / 4%);
}

.nav-cta,
.hero-cta,
.contact-action,
.faq-cta,
.footer-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgb(255 253 249 / 54%);
  border-color: rgb(122 90 19 / 42%);
  color: #745719;
  box-shadow: none;
  transition:
    color 520ms var(--ease-luxury),
    background 520ms var(--ease-luxury),
    border-color 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury),
    box-shadow 520ms var(--ease-luxury);
}

.nav-cta::after,
.hero-cta::after,
.contact-action::after,
.faq-cta::after,
.footer-cta::after {
  content: "";
  position: absolute;
  inset: auto 18% 0;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 620ms var(--ease-luxury), opacity 620ms ease;
  z-index: -1;
}

.hero-cta::before {
  opacity: 0;
  transform: translateY(0) scaleX(0.72);
  transform-origin: center;
  background: rgb(122 90 19 / 7%);
  transition: opacity 520ms ease, transform 620ms var(--ease-luxury);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  background: rgb(255 250 242 / 82%);
  border-color: rgb(122 90 19 / 64%);
  color: #5f4611;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgb(90 65 24 / 7%);
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.hero-cta:hover::after,
.hero-cta:focus-visible::after,
.contact-action:hover::after,
.contact-action:focus-visible::after,
.faq-cta:hover::after,
.faq-cta:focus-visible::after,
.footer-cta:hover::after,
.footer-cta:focus-visible::after {
  transform: scaleX(1);
}

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

.marquee-ribbon {
  border-color: rgb(138 118 95 / 14%);
  background: #fffbf6;
  padding-block: 0.82rem;
}

.marquee-ribbon::before,
.marquee-ribbon::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: min(12vw, 8rem);
  pointer-events: none;
}

.marquee-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, #fffbf6, transparent);
}

.marquee-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, #fffbf6, transparent);
}

.marquee-track,
.marquee-track.reverse {
  animation-name: marqueeRight;
  animation-duration: 58s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}

.marquee-item {
  color: #8a6a22;
  opacity: 0.88;
}

.section-header,
.resultados-header,
.faq-left,
.contato-copy,
.footer-main {
  position: relative;
}

.section-header::before,
.resultados-header::before,
.faq-left::before,
.contato-copy::before,
.footer-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.6rem;
  width: 4.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-brown-soft), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1100ms var(--ease-luxury);
}

.resultados-header::before,
.contato-copy::before {
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.section-header.is-visible::before,
.faq-left.is-visible::before,
.footer-main.is-visible::before {
  transform: scaleX(1);
}

.resultados-header.is-visible::before,
.contato-copy.is-visible::before {
  transform: translateX(-50%) scaleX(1);
}

.procedimentos::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1100ms var(--ease-luxury);
}

.procedimentos.is-visible::before {
  transform: scaleX(1);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition:
    opacity 900ms var(--ease-luxury),
    transform 900ms var(--ease-luxury),
    filter 900ms ease;
  filter: blur(0.16rem);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.proc-card[data-reveal],
.faq-item[data-reveal] {
  transition:
    opacity 900ms var(--ease-luxury),
    transform 900ms var(--ease-luxury),
    filter 900ms ease,
    box-shadow 520ms var(--ease-luxury),
    border-color 520ms var(--ease-luxury),
    background 520ms var(--ease-luxury);
}

.proc-card {
  background: rgb(255 253 249 / 72%);
  box-shadow: 0 16px 42px rgb(69 47 19 / 5%);
}

.proc-card:hover {
  box-shadow: 0 20px 54px rgb(69 47 19 / 8%);
  transform: translateY(-0.35rem);
}

.proc-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgb(183 165 141 / 0%);
  border-radius: 6px;
  pointer-events: none;
  transition: inset 520ms var(--ease-luxury), border-color 520ms ease;
}

.proc-card:hover::after {
  inset: 0.72rem;
  border-color: rgb(183 165 141 / 28%);
}

.faq {
  display: block;
  background: #fffdf9;
}

.faq-left {
  max-width: 42rem;
  margin: 0 auto clamp(2.2rem, 5vw, 3.8rem);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.faq-left::before {
  left: 50%;
  top: -1.35rem;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.faq-left.is-visible::before {
  transform: translateX(-50%) scaleX(1);
}

.faq-left .section-title {
  margin-inline: auto;
}

.faq-left p:last-of-type {
  max-width: 31rem;
  margin-inline: auto;
}

.faq-cta {
  margin-inline: auto;
}

.faq-list {
  max-width: 54rem;
  margin-inline: auto;
  gap: 0;
  border-top: 1px solid rgb(138 118 95 / 16%);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid rgb(138 118 95 / 16%);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgb(138 118 95 / 24%);
  box-shadow: none;
  transform: none;
}

.faq-question {
  min-height: 5.25rem;
  padding: 1.45rem 0.25rem;
}

.faq-question span {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-style: italic;
  font-weight: 600;
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  color: #8a6a22;
}

.faq-answer p {
  max-width: 42rem;
  padding-inline: 0.25rem;
  font-size: 0.96rem;
}

.site-footer {
  border-top: 1px solid rgb(138 118 95 / 15%);
  background: #fffbf6;
  color: var(--color-ink);
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, rgb(138 118 95 / 24%), transparent);
}

.footer-main {
  gap: clamp(2rem, 8vw, 8rem);
}

.footer-logo,
.footer-nav a,
.footer-brand p,
.footer-contact p {
  color: var(--color-ink);
}

.footer-logo-mark {
  border-color: rgb(138 118 95 / 24%);
  opacity: 0.86;
}

.footer-brand p,
.footer-contact p {
  color: var(--color-muted);
}

.footer-nav span,
.footer-contact > span {
  color: #8a6a22;
}

.footer-bottom {
  border-top-color: rgb(138 118 95 / 15%);
  color: rgb(29 26 23 / 48%);
}

.site-footer .footer-cta {
  border-color: rgb(122 90 19 / 38%);
  color: #745719;
  background: transparent;
  box-shadow: none;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  background: rgb(122 90 19 / 7%);
  color: #5f4611;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.6rem);
  bottom: clamp(1rem, 2.5vw, 1.6rem);
  z-index: 30;
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border: 1px solid rgb(122 90 19 / 18%);
  border-radius: 50%;
  background: rgb(255 253 249 / 86%);
  color: #7a5a13;
  box-shadow: 0 18px 44px rgb(69 47 19 / 12%);
  backdrop-filter: blur(14px);
  transition: transform 520ms var(--ease-luxury), box-shadow 520ms ease, background 520ms ease, color 520ms ease;
  animation: whatsappBreathe 3.8s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #fdf6e9;
  color: #5f4611;
  transform: translateY(-0.25rem) scale(1.04);
  box-shadow: 0 22px 54px rgb(69 47 19 / 16%);
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes whatsappBreathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-0.18rem) scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .floating-whatsapp {
    animation: none;
  }
}

@media (max-width: 767px) {
  .faq-question {
    min-height: 4.5rem;
  }

  .faq-question span {
    font-size: 1.25rem;
  }

  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
  }
}


/* Ajuste fino do FAQ minimalista */
.faq-left {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-left .faq-cta {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.faq-list {
  margin-top: 0.5rem;
}

.faq-item:first-child .faq-question {
  padding-top: 1.8rem;
}


/* Separacao extra entre CTA e perguntas */
.faq .faq-list {
  margin-top: clamp(2.75rem, 5vw, 4rem);
}


/* FAQ nao deve ficar sticky no layout minimalista */
.faq .faq-left {
  position: relative;
  top: auto;
}

/* Mantém as microinterações aprovadas com movimento mais suave. */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .marquee-track.reverse {
    animation: marqueeRight 58s linear infinite !important;
  }

  .floating-whatsapp {
    animation: whatsappBreathe 3.8s ease-in-out infinite !important;
  }

  .nav-cta,
  .hero-cta,
  .contact-action,
  .faq-cta,
  .footer-cta,
  .proc-card,
  .proc-card::before,
  .proc-card::after,
  .site-nav-links a,
  .site-nav-links a::after,
  .nav-link,
  .nav-link::after,
  .section-header::before,
  .resultados-header::before,
  .faq-left::before,
  .contato-copy::before,
  .footer-main::before,
  .procedimentos::before {
    transition-duration: 520ms !important;
  }

  [data-reveal] {
    transition:
      opacity 720ms var(--ease-luxury),
      transform 720ms var(--ease-luxury),
      filter 720ms ease !important;
  }
}


/* Delicate structure pass - rodada Codex */
:root {
  --section-wash: #fffaf3;
  --section-soft: #f8f1e8;
  --line-delicate: rgb(138 118 95 / 12%);
}

body {
  background: #fffdf9;
}

.site-nav {
  min-height: 4.45rem;
  background: rgb(255 253 249 / 90%);
}

.nav-logo {
  font-family: var(--font-body);
  color: #6e5521;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav-links a,
.nav-cta {
  letter-spacing: 0.18em;
}

.site-hero {
  min-height: 92svh;
  background:
    linear-gradient(90deg, #fffdf9 0%, #fffdf9 54%, #fbf4eb 54%, #fbf4eb 100%);
}

.hero-content {
  width: 57%;
  padding-left: clamp(3rem, 7vw, 8rem);
}

.hero-media {
  width: 43%;
  background: transparent;
  padding: clamp(1.8rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem) 0;
}

.hero-actions {
  gap: 0;
}

.hero-nav,
.nav-divider {
  display: none;
}

.hero-cta {
  min-height: 3.35rem;
  padding: 1rem 2.2rem;
  letter-spacing: 0.16em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 7vw, 5.8rem);
}

.hero-description {
  max-width: 30rem;
  font-size: 1rem;
}

main > section {
  position: relative;
}

.sobre,
.resultados,
.faq,
.contato,
.procedimentos {
  border-top: 1px solid var(--line-delicate);
}

.sobre {
  background: #fffdf9;
}

.sobre-section {
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4.25rem, 8vw, 7rem);
}

.sobre-signature {
  min-height: 21rem;
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-delicate);
}

.sobre-signature-line {
  width: min(13rem, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(138 118 95 / 30%), transparent);
}

.sobre-signature-mark {
  color: rgb(122 90 19 / 38%);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-style: italic;
  line-height: 1;
}

.sobre-signature-name {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sobre-credentials {
  gap: 1rem 4rem;
}

.procedimentos {
  padding-block: clamp(3.4rem, 6vw, 5.6rem);
  background: #fffbf6;
}

.procedimentos::before {
  display: none;
}

.section-header {
  align-items: flex-start;
  max-width: 74rem;
  margin-inline: auto;
  margin-bottom: 2.4rem;
  padding-bottom: 1.35rem;
  border-bottom-color: rgb(138 118 95 / 12%);
}

.section-header::before {
  width: 3.2rem;
  top: -1rem;
}

.section-header-right {
  max-width: 21rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgb(98 89 80 / 78%);
}

.proc-grid {
  max-width: 74rem;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.proc-card {
  min-height: 13.5rem;
  padding: 1.55rem 1.45rem;
  border-color: rgb(138 118 95 / 10%);
  border-radius: 6px;
  background: rgb(255 253 249 / 82%);
  box-shadow: none;
}

.proc-card::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(138 118 95 / 42%), transparent);
}

.proc-card:hover {
  border-color: rgb(138 118 95 / 20%);
  box-shadow: 0 14px 38px rgb(69 47 19 / 5%);
  transform: translateY(-0.18rem);
}

.proc-card::after {
  display: none;
}

.proc-icon {
  top: 1.2rem;
  right: 1.25rem;
  font-size: 1.65rem;
  color: rgb(122 90 19 / 13%);
}

.proc-number {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.proc-name {
  max-width: 11rem;
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
}

.proc-desc {
  font-size: 0.82rem;
  line-height: 1.62;
}

.proc-link {
  margin-top: 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.marquee-ribbon {
  margin: 0;
  border-top: 1px solid var(--line-delicate);
  border-bottom: 1px solid var(--line-delicate);
}

.resultados {
  background: #fffdf9;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-action {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.floating-whatsapp {
  width: 3.75rem;
  height: 3.75rem;
}

.floating-whatsapp svg {
  width: 1.78rem;
  height: 1.78rem;
}

@media (max-width: 1024px) {
  .hero-content,
  .hero-media {
    width: 50%;
  }

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

@media (max-width: 767px) {
  .site-hero {
    background: #fffdf9;
  }

  .hero-content,
  .hero-media {
    width: 100%;
  }

  .hero-media {
    height: auto;
    padding: 1rem 1.5rem 0;
  }

  .sobre-section {
    grid-template-columns: 1fr;
  }

  .sobre-signature {
    min-height: 12rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-delicate);
  }

  .proc-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }
}

/* Reveal visível mesmo com reduzir movimento ativo. */
@media (prefers-reduced-motion: reduce) {
  [data-reveal]:not(.is-visible) {
    opacity: 0 !important;
    transform: translateY(0.9rem) !important;
    filter: blur(0.08rem) !important;
  }

  [data-reveal].is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0) !important;
  }
}


/* Ajuste de proporcao da home delicada */
.site-hero {
  min-height: 88svh;
}

.hero-content {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-copy h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.55rem, 6.2vw, 5.1rem);
}

.hero-description {
  margin-bottom: 1.55rem;
  line-height: 1.62;
}

/* Home ainda mais compacta em telas baixas */
@media (max-height: 720px) and (min-width: 768px) {
  .site-hero {
    min-height: 100svh;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 5.3vw, 4.35rem);
    margin-bottom: 1rem;
  }

  .hero-kicker {
    margin-bottom: 0.75rem;
  }

  .hero-description {
    max-width: 28rem;
    margin-bottom: 1.15rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-cta {
    min-height: 3rem;
    padding-block: 0.85rem;
  }

}


/* Pequeno encaixe final da dobra da home */
@media (max-height: 720px) and (min-width: 768px) {
  .hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.95rem, 5vw, 4.1rem);
  }
}


/* Reveal mais delicado e espa?ado */
[data-reveal] {
  transition:
    opacity 1250ms var(--ease-luxury),
    transform 1250ms var(--ease-luxury),
    filter 1250ms ease !important;
}

[data-reveal]:not(.is-visible) {
  transform: translateY(1.65rem);
  filter: blur(0.18rem);
}

.hero-kicker[data-reveal],
.hero-copy h1[data-reveal],
.hero-description[data-reveal],
.hero-actions[data-reveal] {
  transition-duration: 1350ms !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition:
      opacity 1050ms var(--ease-luxury),
      transform 1050ms var(--ease-luxury),
      filter 1050ms ease !important;
  }
}

/* A copy da Home usa reveal; o retrato tem uma sequencia dedicada. */
.hero-kicker[data-reveal],
.hero-copy h1[data-reveal],
.hero-description[data-reveal],
.hero-actions[data-reveal] {
  animation: none !important;
}


/* Noble feminine palette pass - rodada Codex */
:root {
  --color-ink: #231d18;
  --color-gold: #8f6b1d;
  --color-gold-mid: #aa842d;
  --color-gold-soft: #d8bd75;
  --color-gold-pale: #efe2bd;
  --color-nude: #f7efe6;
  --color-nude-rose: #f5e9df;
  --color-caramel: #b89a78;
  --color-cocoa: #7b6757;
  --color-paper: #fffdf9;
  --color-paper-muted: #f8f1e8;
  --color-muted: #6a5f55;
  --line-delicate: rgb(143 107 29 / 14%);
}

body {
  background:
    linear-gradient(180deg, #fffdf9 0%, #fbf5ee 36%, #fffaf4 100%);
}

.site-nav {
  background: rgb(255 253 249 / 88%);
  border-bottom-color: rgb(143 107 29 / 15%);
  box-shadow: 0 14px 36px rgb(80 55 27 / 5%);
}

.nav-logo {
  color: #7d5d18;
}

.site-nav-links a {
  color: #6f6258;
}

.site-nav-links a::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-soft), transparent);
}

.nav-cta,
.hero-cta,
.contact-action,
.faq-cta,
.footer-cta {
  border-color: rgb(143 107 29 / 45%);
  color: #7d5d18;
  background: linear-gradient(180deg, rgb(255 253 249 / 76%), rgb(251 244 234 / 72%));
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  border-color: rgb(143 107 29 / 68%);
  background: linear-gradient(180deg, #fff8eb, #f4e7cf);
  color: #67480d;
  box-shadow: 0 18px 42px rgb(143 107 29 / 11%);
}

.site-hero {
  min-height: 100svh;
  background:
    linear-gradient(90deg, #fffdf9 0%, #fffdf9 52%, #f7eee4 52%, #f7eee4 100%);
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3.7rem, 6.6vw, 6rem);
  line-height: 0.98;
}

.hero-title-main {
  white-space: nowrap;
}

.hero-title-accent {
  color: #9b741d;
  text-shadow: 0 18px 46px rgb(155 116 29 / 12%);
}

.hero-kicker,
.section-tag,
.proc-number,
.cred-label,
.contact-label,
.footer-nav span,
.footer-contact > span {
  color: #8f6b1d;
}

.sobre {
  background: linear-gradient(180deg, #fffdf9, #fffaf4);
}

.sobre-signature {
  background: linear-gradient(180deg, rgb(247 239 230 / 42%), transparent);
}

.sobre-signature-mark {
  color: rgb(143 107 29 / 44%);
}

.sobre-signature-line,
.section-header::before,
.resultados-header::before,
.faq-left::before,
.contato-copy::before,
.footer-main::before {
  background: linear-gradient(90deg, transparent, var(--color-gold-soft), transparent);
}

.procedimentos {
  background: linear-gradient(180deg, #fffaf4 0%, #f8f0e6 100%);
}

.proc-card {
  background: linear-gradient(160deg, rgb(255 253 249 / 86%), rgb(252 245 235 / 78%));
  border-color: rgb(143 107 29 / 13%);
}

.proc-card::before {
  background: linear-gradient(90deg, transparent, rgb(216 189 117 / 64%), transparent);
}

.proc-card:hover {
  border-color: rgb(143 107 29 / 24%);
  box-shadow: 0 18px 44px rgb(143 107 29 / 8%);
}

.proc-icon {
  color: rgb(143 107 29 / 16%);
}

.marquee-ribbon {
  background: linear-gradient(90deg, #fffaf4, #f8edde 50%, #fffaf4);
  border-color: rgb(143 107 29 / 14%);
}

.marquee-ribbon::before {
  background: linear-gradient(90deg, #fffaf4, transparent);
}

.marquee-ribbon::after {
  background: linear-gradient(270deg, #fffaf4, transparent);
}

.marquee-item {
  color: #8f6b1d;
}

.resultados,
.faq {
  background: #fffdf9;
}

.contato {
  background:
    radial-gradient(circle at 80% 16%, rgb(216 189 117 / 16%), transparent 24rem),
    linear-gradient(135deg, #f5e8db, #fff8ee 74%);
}

.contact-map {
  border-color: rgb(143 107 29 / 16%);
}

.site-footer {
  background: linear-gradient(180deg, #fffaf4, #f7efe6);
  border-top-color: rgb(143 107 29 / 15%);
}

.footer-logo {
  color: #372b20;
}

.footer-logo-mark {
  border-color: rgb(216 189 117 / 42%);
  box-shadow: 0 10px 26px rgb(143 107 29 / 8%);
}

.floating-whatsapp {
  width: 3.9rem;
  height: 3.9rem;
  border-color: rgb(143 107 29 / 22%);
  color: #7d5d18;
  background: linear-gradient(180deg, rgb(255 253 249 / 92%), rgb(248 236 219 / 88%));
  box-shadow: 0 20px 50px rgb(143 107 29 / 16%);
}

[data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(1.35rem) scale(0.985);
  filter: blur(0.12rem);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 767px) {
  .hero-title-main {
    white-space: nowrap;
  }

  .hero-title-desktop-word {
    display: none;
  }

  .hero-title-mobile-word {
    display: inline;
  }

  .hero-title-secondary {
    white-space: nowrap;
  }

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

  .hero-copy h1 {
    max-width: 10.5ch;
  }
}


/* Ajuste final da escala nobre da home */
.hero-copy h1 {
  font-size: clamp(3.2rem, 5.7vw, 5.15rem);
  line-height: 1;
}

.hero-description {
  margin-bottom: 1.35rem;
}

@media (max-height: 720px) and (min-width: 768px) {
  .hero-copy h1 {
    font-size: clamp(2.9rem, 4.9vw, 4.35rem);
  }
}


/* Encaixe minimo para telas bem baixas */
@media (max-height: 560px) and (min-width: 768px) {
  .hero-content {
    padding-top: 1.45rem;
    padding-bottom: 1.45rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 4.55vw, 4rem);
    margin-bottom: 0.8rem;
  }

  .hero-description {
    margin-bottom: 0.95rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}


/* Clean white nude gold pass - rodada Codex */
:root {
  --color-ink: #1f1d1a;
  --color-gold: #b88a18;
  --color-gold-mid: #c99a24;
  --color-gold-soft: #e8c766;
  --color-gold-pale: #fff1c9;
  --color-paper: #fffefa;
  --color-paper-muted: #fbf6ef;
  --color-nude: #fbf4ec;
  --color-muted: #69625c;
  --line-delicate: rgb(184 138 24 / 15%);
}

body {
  background: linear-gradient(180deg, #fffefa 0%, #fff9f0 48%, #fffefa 100%);
}

.site-nav {
  background: rgb(255 254 250 / 92%);
  border-bottom-color: rgb(232 199 102 / 28%);
  box-shadow: 0 12px 32px rgb(184 138 24 / 4%);
}

.nav-logo,
.site-nav-links a,
.nav-cta {
  color: #2b2824;
}

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

.site-nav-links a::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9ad31 20%, #f1d67a 50%, #d9ad31 80%, transparent);
}

.nav-cta,
.hero-cta,
.contact-action,
.faq-cta,
.footer-cta {
  border-color: rgb(184 138 24 / 48%);
  background: #fffefa;
  color: #9c7414;
  box-shadow: 0 10px 28px rgb(184 138 24 / 5%);
}

.nav-cta::after,
.hero-cta::after,
.contact-action::after,
.faq-cta::after,
.footer-cta::after {
  background: linear-gradient(90deg, transparent, #d9ad31, transparent);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  background: linear-gradient(180deg, #fffefa, #fff4d7);
  border-color: rgb(201 154 36 / 72%);
  color: #8a640e;
  box-shadow: 0 18px 44px rgb(201 154 36 / 12%);
}

.site-hero {
  background:
    linear-gradient(90deg, #fffefa 0%, #fffefa 52%, #fbf4ec 52%, #fbf4ec 100%);
}

.hero-kicker,
.section-tag,
.proc-number,
.cred-label,
.contact-label,
.footer-nav span,
.footer-contact > span {
  color: #b88a18;
}

.hero-title-accent {
  color: #b88a18;
  text-shadow: 0 18px 46px rgb(232 199 102 / 18%);
}

.sobre-signature-line,
.section-header::before,
.resultados-header::before,
.faq-left::before,
.contato-copy::before,
.footer-main::before {
  background: linear-gradient(90deg, transparent, #e8c766, transparent);
}

.sobre,
.resultados,
.faq,
.site-footer {
  background: #fffefa;
}

.sobre-signature {
  background: linear-gradient(180deg, rgb(251 244 236 / 55%), transparent);
}

.sobre-signature-mark {
  color: rgb(184 138 24 / 38%);
}

.procedimentos {
  background: linear-gradient(180deg, #fffefa 0%, #fbf6ef 100%);
}

.proc-card {
  border-color: rgb(232 199 102 / 24%);
  background: #fffefa;
  box-shadow: 0 10px 28px rgb(184 138 24 / 4%);
  transition:
    opacity 1250ms var(--ease-luxury),
    transform 650ms var(--ease-luxury),
    filter 1250ms ease,
    box-shadow 650ms var(--ease-luxury),
    border-color 650ms var(--ease-luxury),
    background 650ms var(--ease-luxury) !important;
}

.proc-card::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8c766, #f6dc83, #e8c766, transparent);
}

.proc-card:hover {
  background: #ffffff;
  border-color: rgb(201 154 36 / 44%);
  box-shadow: 0 22px 54px rgb(201 154 36 / 10%);
  transform: translateY(-0.32rem) scale(1.006);
}

.proc-card:hover::before {
  transform: scaleX(1);
}

.proc-card:hover .proc-icon {
  color: rgb(184 138 24 / 30%);
  transform: translateY(-0.12rem) scale(1.04);
}

.proc-card:hover .proc-link {
  color: #b88a18;
}

.proc-icon {
  color: rgb(184 138 24 / 14%);
}

.proc-link {
  color: #9c7414;
}

.marquee-ribbon {
  background:
    linear-gradient(90deg, #fff8df 0%, #f3cd55 22%, #ffe58f 50%, #f3cd55 78%, #fff8df 100%);
  border-color: rgb(184 138 24 / 24%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 62%),
    inset 0 -1px 0 rgb(184 138 24 / 13%);
}

.marquee-ribbon::before {
  background: linear-gradient(90deg, #fffefa, rgb(255 254 250 / 82%), transparent);
}

.marquee-ribbon::after {
  background: linear-gradient(270deg, #fffefa, rgb(255 254 250 / 82%), transparent);
}

.marquee-item {
  color: #3b2a08;
  opacity: 0.92;
  text-shadow: 0 1px 0 rgb(255 255 255 / 44%);
}

.marquee-dot {
  background: #fff8d8;
  box-shadow: 0 0 0 1px rgb(184 138 24 / 18%);
}

.contato {
  background:
    radial-gradient(circle at 80% 16%, rgb(232 199 102 / 19%), transparent 24rem),
    linear-gradient(135deg, #fbf4ec, #fffefa 74%);
}

.contact-map,
.contact-action {
  border-color: rgb(232 199 102 / 30%);
}

.footer-logo-mark {
  border-color: rgb(232 199 102 / 52%);
  box-shadow: 0 10px 26px rgb(184 138 24 / 9%);
}

.floating-whatsapp {
  border-color: rgb(232 199 102 / 42%);
  color: #9c7414;
  background: linear-gradient(180deg, #fffefa, #fff2c9);
  box-shadow: 0 20px 50px rgb(201 154 36 / 18%);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: linear-gradient(180deg, #ffffff, #ffe9a6);
  color: #8a640e;
}


/* Soft white beige restrained gold pass - rodada Codex */
:root {
  --color-ink: #24211d;
  --color-gold: #a77c1d;
  --color-gold-mid: #b99035;
  --color-gold-soft: #d9bd74;
  --color-gold-pale: #f4e7c5;
  --color-paper: #fffefa;
  --color-paper-muted: #faf4ec;
  --color-nude: #f7efe6;
  --color-muted: #6b645e;
  --line-delicate: rgb(167 124 29 / 12%);
}

body {
  background: linear-gradient(180deg, #fffefa 0%, #faf5ee 50%, #fffefa 100%);
}

.site-nav {
  background: rgb(255 254 250 / 92%);
  border-bottom-color: rgb(167 124 29 / 10%);
  box-shadow: 0 10px 30px rgb(70 49 24 / 4%);
}

.nav-logo,
.site-nav-links a {
  color: #2f2b27;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  color: #a77c1d;
}

.site-nav-links a::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(167 124 29 / 60%), transparent);
}

.nav-cta,
.hero-cta,
.contact-action,
.faq-cta,
.footer-cta {
  border-color: rgb(167 124 29 / 34%);
  background: #fffefa;
  color: #876414;
  box-shadow: none;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  background: #faf2e5;
  border-color: rgb(167 124 29 / 48%);
  color: #73520e;
  box-shadow: 0 14px 34px rgb(70 49 24 / 6%);
}

.site-hero {
  background: linear-gradient(90deg, #fffefa 0%, #fffefa 52%, #faf4ec 52%, #faf4ec 100%);
}

.hero-title-accent,
.hero-kicker,
.section-tag,
.proc-number,
.cred-label,
.contact-label,
.footer-nav span,
.footer-contact > span {
  color: #a77c1d;
}

.hero-title-accent {
  text-shadow: none;
}

.sobre-signature-line,
.section-header::before,
.resultados-header::before,
.faq-left::before,
.contato-copy::before,
.footer-main::before {
  background: linear-gradient(90deg, transparent, rgb(167 124 29 / 36%), transparent);
}

.sobre,
.resultados,
.faq,
.site-footer {
  background: #fffefa;
}

.sobre-signature {
  background: linear-gradient(180deg, rgb(250 244 236 / 48%), transparent);
}

.sobre-signature-mark {
  color: rgb(167 124 29 / 26%);
}

.procedimentos {
  background: linear-gradient(180deg, #fffefa 0%, #faf4ec 100%);
}

.proc-card {
  background: #fffefa;
  border-color: rgb(167 124 29 / 11%);
  box-shadow: none;
}

.proc-card::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(167 124 29 / 35%), transparent);
}

.proc-card:hover {
  background: #ffffff;
  border-color: rgb(167 124 29 / 22%);
  box-shadow: 0 16px 38px rgb(70 49 24 / 5%);
  transform: translateY(-0.28rem) scale(1.004);
}

.proc-icon {
  color: rgb(167 124 29 / 10%);
}

.proc-card:hover .proc-icon {
  color: rgb(167 124 29 / 20%);
}

.proc-link,
.proc-card:hover .proc-link {
  color: #876414;
}

.marquee-ribbon {
  background: linear-gradient(90deg, #fffefa 0%, #f4eadc 22%, #fbf3e7 50%, #f4eadc 78%, #fffefa 100%);
  border-color: rgb(167 124 29 / 10%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 70%);
}

.marquee-ribbon::before {
  background: linear-gradient(90deg, #fffefa, rgb(255 254 250 / 84%), transparent);
}

.marquee-ribbon::after {
  background: linear-gradient(270deg, #fffefa, rgb(255 254 250 / 84%), transparent);
}

.marquee-item {
  color: #7b6b5d;
  opacity: 0.92;
  text-shadow: none;
}

.marquee-dot {
  background: #d9bd74;
  box-shadow: none;
}

.contato {
  background: linear-gradient(135deg, #faf4ec, #fffefa 74%);
}

.contact-map,
.contact-action {
  border-color: rgb(167 124 29 / 14%);
}

.footer-logo-mark {
  border-color: rgb(167 124 29 / 20%);
  box-shadow: none;
}

.floating-whatsapp {
  border-color: rgb(167 124 29 / 22%);
  color: #876414;
  background: #fffefa;
  box-shadow: 0 16px 40px rgb(70 49 24 / 8%);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #faf2e5;
  color: #73520e;
}

/* Results carousel and delicate text motion - rodada Codex */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
}

.section-tag::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, rgb(167 124 29 / 68%), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 850ms var(--ease-luxury), opacity 850ms var(--ease-luxury);
  opacity: 0.78;
}

.is-visible .section-tag::after,
section:hover .section-tag::after,
.section-tag:hover::after {
  transform: scaleX(1);
}

.proc-name,
.proc-desc,
.proc-link,
.proc-icon {
  transition:
    color 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury),
    opacity 520ms var(--ease-luxury);
}

.proc-card:hover .proc-name {
  color: #8d6818;
  transform: translateY(-0.08rem);
}

.proc-card:hover .proc-desc {
  color: #4f4944;
}

.proc-card:hover .proc-link {
  transform: translateX(0.16rem);
}

.before-after-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.before-after-slider,
.result-image-frame {
  width: min(100%, 34.5rem);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 8px;
  background: #faf4ec;
  border: 1px solid rgb(167 124 29 / 12%);
  box-shadow: 0 22px 56px rgb(70 49 24 / 7%);
}

.result-image-frame {
  display: block;
}

.result-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ba-drag-hint,
.result-image-frame figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  padding: 0.46rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgb(167 124 29 / 16%);
  background: rgb(255 254 250 / 62%);
  color: #7b6b5d;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgb(70 49 24 / 7%);
  pointer-events: none;
}

.before-after-copy {
  max-width: 31rem;
  margin: 1.35rem auto 0;
  text-align: left;
}

.before-after-copy h3 {
  transition: color 520ms var(--ease-luxury), transform 520ms var(--ease-luxury);
}

.before-after-card:hover .before-after-copy h3 {
  color: #8d6818;
  transform: translateY(-0.06rem);
}

@media (max-width: 760px) {
  .before-after-slider,
  .result-image-frame {
    width: min(100%, 29rem);
  }
}

/* Smooth visual carousel + softer hero typography - rodada Codex */
.nav-logo {
  font-family: var(--font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  color: #4c433a !important;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.hero-title-accent {
  font-weight: 500 !important;
  color: #9b741d !important;
  text-shadow: none !important;
}

.ba-carousel-prompt {
  margin: 0 0 1.1rem;
  color: #7e7369;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.52em;
  text-align: center;
  text-transform: uppercase;
}

.before-after-slider,
.result-image-frame {
  width: 100% !important;
  box-shadow: 0 20px 50px rgb(70 49 24 / 6%) !important;
}

.ba-drag-hint,
.result-image-frame figcaption {
  display: none !important;
}

.before-after-card:hover .before-after-slider,
.before-after-card:hover .result-image-frame {
  border-color: rgb(167 124 29 / 20%);
  box-shadow: 0 24px 56px rgb(70 49 24 / 8%) !important;
}

/* Correcoes de delicadeza e resultados - rodada Codex */
.section-header::before,
.resultados-header::before,
.faq-left::before,
.contato-copy::before,
.footer-main::before {
  display: none !important;
  opacity: 0 !important;
}

.section-tag {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.72rem;
  color: #9b741d !important;
  cursor: default;
  transition: color 180ms ease, transform 180ms ease;
}

.section-tag::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, rgb(167 124 29 / 68%), transparent);
  opacity: 0 !important;
  transform: scaleX(0) !important;
  transform-origin: left center;
  transition: transform 260ms ease, opacity 180ms ease !important;
}

.is-visible .section-tag::after,
section:hover .section-tag::after {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.section-tag:hover,
.section-header:hover .section-tag,
.resultados-header:hover .section-tag,
.faq-left:hover .section-tag,
.contato-copy:hover .section-tag {
  color: #7b5810 !important;
}

.section-tag:hover::after,
.section-header:hover .section-tag::after,
.resultados-header:hover .section-tag::after,
.faq-left:hover .section-tag::after,
.contato-copy:hover .section-tag::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.nav-logo {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.055em !important;
  color: #3f352e !important;
  text-transform: none !important;
}

.site-nav-links a,
.section-title,
.section-heading,
.section-body,
.section-header-right,
.before-after-copy h3,
.faq-question span,
.footer-nav a,
.footer-contact a {
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.site-nav-links a:hover,
.section-title:hover,
.section-heading:hover,
.before-after-copy h3:hover,
.faq-question:hover span,
.footer-nav a:hover,
.footer-contact a:hover {
  color: #7b5810 !important;
}

.section-title:hover,
.section-heading:hover,
.before-after-copy h3:hover {
  transform: translateY(-1px);
}

.section-body:hover,
.section-header-right:hover {
  color: #4a433c !important;
}

.nav-cta,
.hero-cta,
.contact-action,
.faq-cta {
  min-height: 2.65rem !important;
  padding: 0.72rem 1.45rem !important;
  border: 1px solid rgb(167 124 29 / 28%) !important;
  border-radius: 999px !important;
  background: rgb(255 254 250 / 86%) !important;
  color: #7b5810 !important;
  box-shadow: none !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  transition:
    background-color 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    transform 170ms ease,
    box-shadow 170ms ease !important;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible {
  background: #ffffff !important;
  border-color: rgb(167 124 29 / 48%) !important;
  color: #5f4309 !important;
  box-shadow: 0 10px 24px rgb(70 49 24 / 5%) !important;
  transform: translateY(-1px) !important;
}

.proc-card {
  transition:
    background-color 140ms ease,
    border-color 170ms ease,
    box-shadow 190ms ease,
    transform 190ms ease !important;
}

.proc-card:hover {
  background: #ffffff !important;
  border-color: rgb(167 124 29 / 24%) !important;
  box-shadow: 0 14px 30px rgb(70 49 24 / 5%) !important;
  transform: translateY(-0.18rem) !important;
}

.proc-card:hover .proc-name,
.proc-card:hover .proc-desc,
.proc-card:hover .proc-link,
.proc-card:hover .proc-number {
  transition-duration: 160ms !important;
}

.floating-whatsapp {
  width: 3.65rem !important;
  height: 3.65rem !important;
  color: #25d366 !important;
  background: #ffffff !important;
  border-color: rgb(37 211 102 / 34%) !important;
  box-shadow: 0 16px 38px rgb(18 140 74 / 12%) !important;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: #128c4a !important;
  background: #effff5 !important;
  border-color: rgb(37 211 102 / 52%) !important;
  transform: translateY(-2px) scale(1.035) !important;
}

.resultados .before-after-slider {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  border-radius: 7px !important;
  border: 0 !important;
  background: #f8f1e8 !important;
  box-shadow: none !important;
}

.resultados .ba-pane img,
.resultados .result-image-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.resultados .ba-after img {
  width: var(--slider-width) !important;
  max-width: none !important;
}

.resultados .ba-label {
  padding: 0.42rem 0.62rem !important;
  border-radius: 999px !important;
  background: rgb(38 29 24 / 82%) !important;
  color: #ffffff !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.12em !important;
}

.resultados .ba-handle {
  width: 2rem !important;
  height: 2rem !important;
  background: #ffffff !important;
  color: #9b741d !important;
  box-shadow: 0 8px 20px rgb(70 49 24 / 14%) !important;
}

.resultados .before-after-copy {
  margin: 0.85rem 0.25rem 0.15rem !important;
  text-align: left !important;
}

.resultados .before-after-copy p:not(.proc-number) {
  display: none !important;
}

.resultados .before-after-copy h3 {
  margin: 0.18rem 0 0 !important;
  font-size: 1.1rem !important;
  line-height: 1.15 !important;
}

.resultados .ba-carousel-button {
  position: static;
  z-index: 20;
  display: grid !important;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 2px solid rgb(105 80 11 / 46%);
  border-radius: 50%;
  background: rgb(255 254 250 / 94%);
  color: #8d6818;
  box-shadow: 0 12px 28px rgb(70 49 24 / 12%);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.resultados .ba-carousel-button span {
  width: 0.62rem;
  height: 0.62rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  filter: none;
}

.resultados .ba-carousel-prev span {
  transform: translateX(0.1rem) rotate(-45deg);
}

.resultados .ba-carousel-next span {
  transform: translateX(-0.1rem) rotate(135deg);
}

.resultados .ba-carousel-button:hover:not(:disabled),
.resultados .ba-carousel-button:focus-visible {
  border-color: rgb(105 80 11 / 72%);
  background: #ffffff;
  color: #6f4f0f;
  transform: scale(1.06);
}

.resultados .ba-carousel-button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.resultados .ba-carousel-button:active:not(:disabled) {
  background: var(--color-paper-muted);
  color: var(--focus-ring);
  transform: scale(0.98);
}

.resultados .ba-carousel-dot:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.resultados .ba-carousel-button:disabled {
  cursor: default;
  opacity: 0.5;
}

.resultados .ba-carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.resultados .ba-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resultados .ba-carousel-dot {
  width: 0.46rem;
  height: 0.46rem;
  border: 0;
  border-radius: 50%;
  background: rgb(126 115 105 / 34%);
  cursor: pointer;
  padding: 0;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease, transform 180ms ease;
}

.resultados .ba-carousel-dot:hover {
  background: rgb(155 116 29 / 62%);
  transform: scale(1.2);
}

.resultados .ba-carousel-dot[aria-current] {
  width: 1.35rem;
  border-radius: 999px;
  background: #9b741d;
}

.resultados .ba-carousel-prompt {
  margin: 0 !important;
  color: #7e7369 !important;
  font-family: var(--font-sans) !important;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.6 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

/* Carousel centralizado de resultados */
.resultados .before-after-showcase {
  --ba-card-width: min(100%, 26rem);
  --ba-card-half: 13rem;
  display: grid !important;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  gap: clamp(0.75rem, 2.2vw, 1.25rem);
  align-items: center;
  width: min(100%, 38rem) !important;
  max-width: 38rem !important;
}

.resultados .ba-carousel-viewport {
  grid-column: 2;
  width: 100% !important;
  margin-inline: 0 !important;
  overflow: hidden !important;
  cursor: default !important;
  border-radius: 8px !important;
  scroll-snap-type: none !important;
  scroll-padding-inline: 0 !important;
  overscroll-behavior-inline: auto !important;
  -webkit-overflow-scrolling: auto !important;
}

.resultados .ba-carousel-track {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  width: 100% !important;
  min-width: 0 !important;
  padding-inline: 0 !important;
  gap: 0 !important;
}

.resultados .ba-carousel-track > .before-after-card {
  grid-area: 1 / 1;
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0.5rem !important;
  border: 1px solid rgb(167 124 29 / 12%) !important;
  border-radius: 8px !important;
  background: #fffefa !important;
  box-shadow: 0 14px 32px rgb(70 49 24 / 5%) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  filter: blur(10px);
  transform: scale(1.02);
  transition:
    opacity 320ms ease,
    transform 320ms var(--ease-luxury),
    filter 320ms ease,
    visibility 0s linear 320ms,
    border-color 220ms ease,
    box-shadow 220ms ease !important;
}

.resultados .ba-carousel-track > .before-after-card.is-active {
  visibility: visible;
  z-index: 1;
  pointer-events: none;
  transition-delay: 0s;
}

.resultados .ba-carousel-track > .before-after-card.is-current-slide {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.resultados .ba-carousel-track > .before-after-card.is-leaving {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.985);
  z-index: 1;
  pointer-events: none;
}

.resultados .ba-carousel-track > .before-after-card.is-active:hover {
  border-color: rgb(167 124 29 / 24%) !important;
  box-shadow: 0 18px 38px rgb(70 49 24 / 7%) !important;
}

.resultados .before-after-slider {
  aspect-ratio: 4 / 5 !important;
}

.resultados .ba-carousel-button {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  align-self: center;
  justify-self: center;
  display: grid !important;
}

.resultados .ba-carousel-prev {
  grid-column: 1;
  grid-row: 1;
}

.resultados .ba-carousel-next {
  grid-column: 3;
  grid-row: 1;
}

.resultados .ba-carousel-navigation {
  grid-column: 1 / -1;
}

.resultados .before-after-showcase.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.resultados .before-after-showcase.is-single .ba-carousel-viewport,
.resultados .before-after-showcase.is-single .ba-carousel-navigation {
  grid-column: 1;
}

@media (prefers-reduced-motion: reduce) {
  .resultados .ba-carousel-track > .before-after-card {
    transition:
      opacity 320ms ease,
      transform 320ms var(--ease-luxury),
      filter 320ms ease,
      visibility 0s linear 320ms !important;
  }
}

@media (max-width: 760px) {
  .resultados .before-after-showcase {
    --ba-card-width: min(100%, 19rem);
    grid-template-columns: 2.65rem minmax(0, 1fr) 2.65rem;
    gap: 0.5rem;
    width: min(100%, 27rem) !important;
  }

  .resultados .ba-carousel-button {
    width: 2.55rem !important;
    height: 2.55rem !important;
  }

  .resultados .ba-carousel-track > .before-after-card {
    padding: 0.42rem !important;
  }
}

/* Dourado vibrante final */
:root {
  --color-gold: #d4a017;
  --color-gold-mid: #e3b42e;
  --color-gold-soft: #f2cf63;
  --color-gold-pale: #fff2c4;
  --color-line: rgb(212 160 23 / 22%);
  --focus-ring: #b8870e;
}

.section-tag,
.hero-title-accent,
.resultados .ba-handle,
.resultados .ba-carousel-button,
.contact-action,
.footer-cta,
.faq-cta,
.proc-link,
.nav-cta {
  color: var(--color-gold) !important;
}

.section-tag::after,
.resultados .ba-carousel-dot[aria-current],
.hero-cta,
.nav-cta:hover,
.nav-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible {
  background: var(--color-gold) !important;
}

.resultados .ba-carousel-button,
.resultados .ba-carousel-track > .before-after-card,
.contact-action,
.footer-cta,
.faq-cta,
.nav-cta {
  border-color: rgb(212 160 23 / 42%) !important;
}

.resultados .ba-carousel-button:hover,
.resultados .ba-carousel-button:focus-visible {
  border-color: rgb(212 160 23 / 78%) !important;
  color: #b8870e !important;
}

/* Hover simples final para textos e imagens */
.site-nav-links a,
.nav-logo,
.section-title,
.section-heading,
.proc-name,
.proc-desc,
.proc-link,
.before-after-copy h3,
.faq-question span,
.section-body,
.section-header-right,
.contact-row,
.footer-nav a,
.footer-contact a,
.footer-logo,
.nav-cta,
.hero-cta,
.contact-action,
.faq-cta,
.footer-cta {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease !important;
}

.site-nav-links a:hover,
.nav-logo:hover,
.section-title:hover,
.section-heading:hover,
.proc-card:hover .proc-name,
.proc-card:hover .proc-desc,
.proc-card:hover .proc-link,
.before-after-copy h3:hover,
.faq-question:hover span,
.section-body:hover,
.section-header-right:hover,
.contact-row:hover,
.footer-nav a:hover,
.footer-contact a:hover,
.footer-logo:hover {
  color: var(--color-gold) !important;
  opacity: 0.9;
  transform: translateY(-1px) !important;
}

.nav-cta:hover,
.hero-cta:hover,
.contact-action:hover,
.faq-cta:hover,
.footer-cta:hover {
  box-shadow: 0 10px 24px rgb(212 160 23 / 16%) !important;
  transform: translateY(-1px) !important;
}

.sobre-media,
.before-after-slider,
.contact-map,
.footer-logo-mark {
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease !important;
}

.sobre-media img,
.before-after-slider img,
.contact-map iframe,
.footer-logo-mark {
  transition:
    filter 220ms ease,
    opacity 220ms ease,
    transform 220ms ease !important;
}

.sobre-media:hover,
.before-after-slider:hover,
.contact-map:hover {
  border-color: rgb(212 160 23 / 34%) !important;
  box-shadow: 0 14px 34px rgb(70 49 24 / 8%) !important;
}

.sobre-media:hover img,
.before-after-slider:hover img,
.contact-map:hover iframe,
.footer-logo:hover .footer-logo-mark {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025) !important;
}

.proc-card:hover,
.faq-item:hover {
  border-color: rgb(212 160 23 / 24%) !important;
  transform: translateY(-2px) !important;
}

.resultados .ba-carousel-button:hover,
.resultados .ba-carousel-button:focus-visible,
.resultados .ba-carousel-dot:hover {
  transform: scale(1.08) !important;
}

.hero-copy h1,
.section-title,
.section-heading,
.proc-name,
.before-after-copy h3,
.faq-left .section-title,
.contact-title,
.footer-logo span {
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease !important;
}

.hero-copy h1:hover,
.section-title:hover,
.section-heading:hover,
.proc-card:hover .proc-name,
.before-after-copy h3:hover,
.faq-left .section-title:hover,
.contact-title:hover,
.footer-logo:hover span {
  color: var(--color-gold) !important;
  text-shadow: 0 8px 24px rgb(212 160 23 / 16%);
  transform: translateY(-1px) !important;
}

/* Detalhes editoriais verticais */
.site-hero::after,
.sobre::after,
.resultados::after,
.contato::after {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgb(24 23 22 / 42%);
  font-family: var(--font-sans, inherit);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.48em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.site-hero::after {
  content: "natural";
  right: clamp(1rem, 3vw, 2.8rem);
  bottom: clamp(2rem, 6vw, 5rem);
}

.sobre::after {
  content: "cuidado";
  left: clamp(1rem, 3vw, 2.6rem);
  top: clamp(2.5rem, 7vw, 5.5rem);
}

.resultados::after {
  content: "resultado";
  right: clamp(1rem, 3vw, 2.6rem);
  top: clamp(2.5rem, 7vw, 5rem);
}

.contato::after {
  content: "agenda";
  left: clamp(1rem, 3vw, 2.6rem);
  bottom: clamp(2.5rem, 7vw, 5rem);
}

.site-hero::before,
.sobre::before,
.resultados::before,
.contato::before {
  position: absolute;
  z-index: 3;
  width: 1px;
  height: clamp(2.6rem, 7vw, 4.7rem);
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  content: "";
  opacity: 0.65;
  pointer-events: none;
  transform-origin: top;
  animation: detailLinePulse 2.8s ease-in-out infinite;
}

.site-hero::before {
  right: clamp(1.35rem, 3.35vw, 3.15rem);
  bottom: clamp(12rem, 17vw, 15rem);
}

.sobre::before {
  left: clamp(1.35rem, 3.35vw, 3rem);
  top: clamp(7.4rem, 12vw, 10rem);
}

.resultados::before {
  right: clamp(1.35rem, 3.35vw, 3rem);
  top: clamp(7rem, 12vw, 9.6rem);
}

.contato::before {
  left: clamp(1.35rem, 3.35vw, 3rem);
  bottom: clamp(6.8rem, 12vw, 9.4rem);
}

@keyframes detailLinePulse {
  0%, 100% {
    opacity: 0.42;
    transform: scaleY(0.74);
  }

  50% {
    opacity: 0.88;
    transform: scaleY(1);
  }
}

.sobre-photo {
  position: relative;
  min-height: clamp(24rem, 44vw, 38rem);
  overflow: visible;
  border: 1px solid rgb(212 160 23 / 26%);
  border-radius: 14px;
  background: #fffefa;
  box-shadow:
    0 28px 70px rgb(70 49 24 / 13%),
    0 0 0 8px rgb(255 254 250 / 72%);
  transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease !important;
}

.sobre-photo::before,
.sobre-photo::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.sobre-photo::before {
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border: 1px solid rgb(212 160 23 / 24%);
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(212 160 23 / 10%), transparent 56%);
}

.sobre-photo::after {
  inset: -0.7rem 0.7rem 0.7rem -0.7rem;
  z-index: 2;
  border-top: 1px solid rgb(255 255 255 / 70%);
  border-left: 1px solid rgb(255 255 255 / 62%);
  border-radius: 14px;
}

.sobre-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

.sobre-photo:hover {
  border-color: rgb(212 160 23 / 46%) !important;
  box-shadow:
    0 34px 82px rgb(70 49 24 / 16%),
    0 0 0 8px rgb(255 246 218 / 76%);
  transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-3px) !important;
}

@media (max-width: 760px) {
  .sobre-photo {
    min-height: 26rem;
  }
}

@media (max-width: 900px) {
  .site-hero::before,
  .site-hero::after,
  .sobre::before,
  .sobre::after,
  .resultados::before,
  .resultados::after,
  .contato::before,
  .contato::after {
    display: none;
  }
}

/* Ajustes delicados finais - validacao do prototipo */
:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
.hero-description,
.section-body,
.section-header-right,
.proc-desc,
.before-after-copy,
.faq-answer p,
.contact-row {
  font-weight: 300 !important;
}

.hero-copy h1 {
  font-weight: 300 !important;
  letter-spacing: 0.01em !important;
}

.hero-title-accent,
.section-title,
.section-heading,
.contact-title {
  font-weight: 400 !important;
}

.proc-name,
.before-after-copy h3 {
  font-weight: 500 !important;
}

.site-nav-links a,
.nav-cta,
.hero-cta,
.contact-action,
.faq-cta,
.footer-cta,
.section-tag,
.proc-link {
  font-weight: 500 !important;
}

.procedimentos {
  background-image:
    url("data:image/svg+xml,%3Csvg width='1440' height='360' viewBox='0 0 1440 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4a017' stroke-opacity='.105' stroke-width='1'%3E%3Cpath d='M-80 105 C180 15 330 235 570 128 S1005 33 1510 126'/%3E%3Cpath d='M-80 136 C170 46 338 266 578 159 S1010 64 1510 157'/%3E%3Cpath d='M-80 167 C165 77 346 297 586 190 S1015 95 1510 188'/%3E%3Cpath d='M-80 198 C160 108 354 328 594 221 S1020 126 1510 219'/%3E%3Cpath d='M-80 229 C155 139 362 359 602 252 S1025 157 1510 250'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, rgb(255 253 249 / 72%), transparent 45%),
    linear-gradient(180deg, #f4efe7, #fbf7f1 100%) !important;
  background-position: center 2rem, center, center !important;
  background-repeat: no-repeat !important;
  background-size: min(100rem, 118vw) auto, auto, auto !important;
}

.resultados {
  background-image:
    url("data:image/svg+xml,%3Csvg width='1440' height='320' viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4a017' stroke-opacity='.09' stroke-width='1'%3E%3Cpath d='M-120 122 C120 38 312 230 552 140 S920 46 1560 130'/%3E%3Cpath d='M-120 153 C120 69 312 261 552 171 S920 77 1560 161'/%3E%3Cpath d='M-120 184 C120 100 312 292 552 202 S920 108 1560 192'/%3E%3Cpath d='M-120 215 C120 131 312 323 552 233 S920 139 1560 223'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--color-paper), #fffaf2 100%) !important;
  background-position: center 1.4rem, center !important;
  background-repeat: no-repeat !important;
  background-size: min(98rem, 120vw) auto, auto !important;
}

.proc-icon {
  color: rgb(96 70 16 / 31%) !important;
  font-weight: 500 !important;
}

.proc-card:hover .proc-icon {
  color: rgb(96 70 16 / 46%) !important;
}

.resultados .ba-carousel-navigation {
  display: none !important;
}

.resultados .before-after-showcase {
  grid-template-columns: 2.25rem minmax(0, 1fr) 2.25rem !important;
  gap: clamp(0.35rem, 1.4vw, 0.8rem) !important;
}

.resultados .ba-carousel-button {
  width: 2.25rem !important;
  height: 2.25rem !important;
  border-width: 1px !important;
  background: rgb(255 253 249 / 62%) !important;
  color: rgb(178 134 20 / 86%) !important;
  box-shadow: none !important;
}

.resultados .ba-carousel-button span {
  width: 0.48rem !important;
  height: 0.48rem !important;
  display: block !important;
  border-width: 1.5px !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-color: currentColor !important;
  background: transparent !important;
}

.resultados .ba-carousel-button:hover,
.resultados .ba-carousel-button:focus-visible {
  background: #fffefa !important;
  border-color: rgb(212 160 23 / 62%) !important;
  color: #a7780f !important;
  transform: scale(1.04) !important;
}

.resultados .ba-carousel-track > .before-after-card {
  filter: none !important;
  transform: translateX(2.4rem) scale(0.985) !important;
  transition:
    opacity 680ms var(--ease-luxury),
    transform 680ms var(--ease-luxury),
    visibility 0s linear 680ms,
    border-color 260ms ease,
    box-shadow 260ms ease !important;
}

.resultados .ba-carousel-track > .before-after-card.is-current-slide {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

.resultados .ba-carousel-track > .before-after-card.is-entering-next {
  transform: translateX(2.8rem) scale(0.985) !important;
}

.resultados .ba-carousel-track > .before-after-card.is-entering-prev {
  transform: translateX(-2.8rem) scale(0.985) !important;
}

.resultados .ba-carousel-track > .before-after-card.is-leaving-next {
  transform: translateX(-2.8rem) scale(0.985) !important;
}

.resultados .ba-carousel-track > .before-after-card.is-leaving-prev {
  transform: translateX(2.8rem) scale(0.985) !important;
}

.resultados .ba-carousel-track > .before-after-card.is-leaving {
  opacity: 0 !important;
  filter: none !important;
}

.site-hero::after,
.sobre::after,
.resultados::after,
.contato::after {
  font-size: 0.66rem !important;
  letter-spacing: 0.56em !important;
}

.site-hero::before,
.sobre::before,
.resultados::before,
.contato::before {
  height: clamp(3.8rem, 8vw, 6.4rem) !important;
}

.floating-whatsapp {
  width: 3.55rem !important;
  height: 3.55rem !important;
  border: 0 !important;
  background: #25d366 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgb(18 140 74 / 20%) !important;
}

.floating-whatsapp svg {
  width: 2.35rem !important;
  height: 2.35rem !important;
  fill: currentColor !important;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #20c760 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgb(18 140 74 / 26%) !important;
}

[data-reveal] {
  transition:
    opacity 1500ms var(--ease-luxury),
    transform 1500ms var(--ease-luxury),
    filter 1500ms ease !important;
}

[data-reveal]:not(.is-visible) {
  transform: translateY(1.35rem) !important;
  filter: blur(0.12rem) !important;
}

.hero-kicker[data-reveal],
.hero-copy h1[data-reveal],
.hero-description[data-reveal],
.hero-actions[data-reveal] {
  transition-duration: 1650ms !important;
}

@media (max-width: 760px) {
  .resultados .before-after-showcase {
    grid-template-columns: 2rem minmax(0, 1fr) 2rem !important;
  }

  .resultados .ba-carousel-button {
    width: 2rem !important;
    height: 2rem !important;
  }
}

/* Refinos finais: dourado suave, FAQ leve e carrossel horizontal */
:root {
  --color-gold: #bd9340;
  --color-gold-mid: #caa45c;
  --color-gold-soft: #e0c889;
  --color-gold-pale: #f5ead0;
  --color-line: rgb(189 147 64 / 18%);
  --focus-ring: #a77d2b;
}

.procedimentos {
  background-image:
    linear-gradient(135deg, rgb(255 253 249 / 72%), transparent 45%),
    linear-gradient(180deg, #f4efe7, #fbf7f1 100%) !important;
  background-position: center, center !important;
  background-repeat: no-repeat !important;
  background-size: auto, auto !important;
}

.resultados {
  background-image:
    url("data:image/svg+xml,%3Csvg width='1440' height='320' viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bd9340' stroke-opacity='.075' stroke-width='1'%3E%3Cpath d='M-120 122 C120 38 312 230 552 140 S920 46 1560 130'/%3E%3Cpath d='M-120 153 C120 69 312 261 552 171 S920 77 1560 161'/%3E%3Cpath d='M-120 184 C120 100 312 292 552 202 S920 108 1560 192'/%3E%3Cpath d='M-120 215 C120 131 312 323 552 233 S920 139 1560 223'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--color-paper), #fffaf2 100%) !important;
  background-position: center clamp(19rem, 34vw, 28rem), center !important;
  background-repeat: no-repeat !important;
  background-size: min(94rem, 118vw) auto, auto !important;
}

.section-tag {
  gap: 0 !important;
  color: #a77d2b !important;
  transform: translateX(0) !important;
  transition:
    color 520ms var(--ease-luxury),
    gap 620ms var(--ease-luxury),
    transform 620ms var(--ease-luxury) !important;
}

.section-tag::after {
  width: 2.6rem !important;
  margin-left: 0 !important;
  background: linear-gradient(90deg, rgb(189 147 64 / 64%), transparent) !important;
  opacity: 0 !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition:
    opacity 520ms var(--ease-luxury),
    transform 620ms var(--ease-luxury),
    margin-left 620ms var(--ease-luxury) !important;
}

.section-tag:hover,
.section-header:hover .section-tag,
.resultados-header:hover .section-tag,
.faq-left:hover .section-tag,
.contato-copy:hover .section-tag {
  gap: 0.72rem !important;
  color: #96702a !important;
}

.section-tag:hover::after,
.section-header:hover .section-tag::after,
.resultados-header:hover .section-tag::after,
.faq-left:hover .section-tag::after,
.contato-copy:hover .section-tag::after {
  margin-left: 0.18rem !important;
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.faq-question span {
  color: #2b2723 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem) !important;
  font-style: normal !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
}

.faq-question:hover span {
  color: #7f622b !important;
  font-weight: 300 !important;
  transform: translateX(0.28rem) !important;
}

.faq-item.open .faq-question span {
  color: #2b2723 !important;
  font-weight: 300 !important;
  transform: none !important;
}

.faq-icon {
  color: #a77d2b !important;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  background: var(--color-gold) !important;
  border-color: rgb(189 147 64 / 62%) !important;
  color: #ffffff !important;
}

.nav-cta:hover *,
.nav-cta:focus-visible *,
.hero-cta:hover *,
.hero-cta:focus-visible *,
.contact-action:hover *,
.contact-action:focus-visible *,
.faq-cta:hover *,
.faq-cta:focus-visible *,
.footer-cta:hover *,
.footer-cta:focus-visible * {
  color: #ffffff !important;
}

.ba-label {
  display: none !important;
}

.resultados .before-after-showcase {
  width: min(100%, 40rem) !important;
  max-width: 40rem !important;
}

.resultados .ba-carousel-viewport {
  overflow: hidden !important;
}

.resultados .ba-carousel-track {
  --ba-current: 0;
  display: flex !important;
  grid-template-columns: none !important;
  width: 100% !important;
  gap: 0 !important;
  transform: translateX(calc(var(--ba-current) * -100%)) !important;
  transition: transform 760ms var(--ease-luxury) !important;
  will-change: transform;
}

.resultados .ba-carousel-track > .before-after-card {
  grid-area: auto !important;
  width: 100% !important;
  min-width: 100% !important;
  flex: 0 0 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease !important;
}

.resultados .ba-carousel-track > .before-after-card.is-current-slide,
.resultados .ba-carousel-track > .before-after-card.is-entering-next,
.resultados .ba-carousel-track > .before-after-card.is-entering-prev,
.resultados .ba-carousel-track > .before-after-card.is-leaving-next,
.resultados .ba-carousel-track > .before-after-card.is-leaving-prev,
.resultados .ba-carousel-track > .before-after-card.is-leaving {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}

.resultados .ba-carousel-button {
  color: #a77d2b !important;
  border-color: rgb(189 147 64 / 34%) !important;
}

.resultados .ba-carousel-button:hover,
.resultados .ba-carousel-button:focus-visible {
  color: #96702a !important;
  border-color: rgb(189 147 64 / 58%) !important;
}

/* Rodada editorial: proporcao, detalhes laterais e resultados */
.site-hero::after,
.sobre::after,
.resultados::after,
.contato::after {
  color: rgb(24 23 22 / 48%) !important;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.62em !important;
}

.site-hero::before,
.sobre::before,
.resultados::before,
.contato::before {
  height: clamp(4.2rem, 8vw, 6.8rem) !important;
  opacity: 0.62 !important;
}

.sobre::before {
  top: clamp(11.2rem, 16vw, 14rem) !important;
}

.resultados::before {
  top: clamp(12.4rem, 17vw, 15.2rem) !important;
}

.site-hero::before {
  bottom: clamp(9.4rem, 14vw, 12rem) !important;
}

.contato::before {
  bottom: clamp(10.4rem, 15vw, 13rem) !important;
}

.resultados {
  background-image:
    url("data:image/svg+xml,%3Csvg width='1440' height='320' viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bd9340' stroke-opacity='.16' stroke-width='1'%3E%3Cpath d='M-120 122 C120 38 312 230 552 140 S920 46 1560 130'/%3E%3Cpath d='M-120 153 C120 69 312 261 552 171 S920 77 1560 161'/%3E%3Cpath d='M-120 184 C120 100 312 292 552 202 S920 108 1560 192'/%3E%3Cpath d='M-120 215 C120 131 312 323 552 233 S920 139 1560 223'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--color-paper), #fffaf2 100%) !important;
  background-position: center clamp(18rem, 31vw, 24rem), center !important;
  background-size: min(96rem, 120vw) auto, auto !important;
}

.resultados .before-after-showcase {
  grid-template-columns: minmax(0, 1fr) !important;
  width: min(100%, 31rem) !important;
  max-width: 31rem !important;
}

.resultados .ba-carousel-prev,
.resultados .ba-carousel-next,
.resultados .ba-carousel-dots {
  display: none !important;
}

.resultados .ba-carousel-viewport {
  grid-column: 1 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.resultados .ba-carousel-track > .before-after-card {
  padding: 0.36rem 0.36rem 0.82rem !important;
  border-color: rgb(189 147 64 / 22%) !important;
  box-shadow: 0 12px 26px rgb(70 49 24 / 4%) !important;
}

.resultados .before-after-slider {
  width: 100% !important;
  max-height: min(58vh, 31rem) !important;
  aspect-ratio: 4 / 4.55 !important;
}

.resultados .before-after-copy {
  margin: 0.58rem 0.25rem 0 !important;
  text-align: center !important;
}

.resultados .before-after-copy h3 {
  color: rgb(43 39 35 / 82%) !important;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
}

.resultados .ba-carousel-navigation {
  display: flex !important;
  grid-column: 1 !important;
  justify-content: center !important;
  margin-top: 1.15rem !important;
}

.resultados .ba-carousel-prompt {
  display: block !important;
  color: rgb(88 82 75 / 62%) !important;
  font-size: 0.58rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.42em !important;
  text-transform: uppercase !important;
}

.contact-title {
  max-width: 14ch !important;
  margin-bottom: 1.3rem !important;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem) !important;
  font-weight: 300 !important;
  line-height: 1.04 !important;
}

.contato-copy p:last-child {
  max-width: 34rem !important;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem) !important;
  line-height: 1.72 !important;
}

@media (max-width: 760px) {
  .resultados .before-after-showcase {
    width: min(100%, 22rem) !important;
  }

  .resultados .before-after-slider {
    max-height: none !important;
    aspect-ratio: 4 / 4.75 !important;
  }

  .contact-title {
    font-size: clamp(2.2rem, 12vw, 3.25rem) !important;
  }
}
/* Ajustes solicitados: home com foto, carrossel, FAQ decorativo e mobile nav */
.nav-toggle {
  display: none;
}

/* Ajuste do detalhe de fundo: ondas + elipse na FAQ */
.resultados::before,
.resultados::after {
  display: none !important;
}

.faq::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  display: block !important;
  left: -8vw !important;
  right: -8vw !important;
  top: clamp(2.4rem, 7vw, 5.4rem) !important;
  width: auto !important;
  height: clamp(8rem, 16vw, 14rem) !important;
  opacity: 0.58 !important;
  pointer-events: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='260' viewBox='0 0 1600 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bd9340' stroke-width='1.15' opacity='.28'%3E%3Cpath d='M-80 80 C150 18 310 205 540 125 C750 52 875 24 1060 93 C1255 166 1432 48 1680 36'/%3E%3Cpath d='M-80 103 C155 42 315 226 548 150 C760 82 887 50 1072 116 C1260 184 1438 78 1680 62'/%3E%3Cpath d='M-80 126 C160 68 320 244 556 176 C770 112 900 78 1085 141 C1270 204 1445 109 1680 90'/%3E%3Cpath d='M-80 149 C166 94 326 260 566 202 C782 145 912 110 1100 168 C1282 224 1452 142 1680 120'/%3E%3Cpath d='M-80 172 C172 122 334 274 578 228 C794 178 925 142 1116 196 C1297 244 1462 176 1680 152'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: 115% 100% !important;
  transform: none !important;
}

.faq::after {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  display: block !important;
  left: clamp(22rem, 10vw, 10rem) !important;
  top: clamp(6rem, 14vw, 11rem) !important;
  width: clamp(18rem, 32vw, 34rem) !important;
  height: clamp(8rem, 13vw, 13rem) !important;
  opacity: 0.62 !important;
  pointer-events: none !important;
  background:
    radial-gradient(closest-side at 50% 50%, transparent 63%, rgb(189 147 64 / 26%) 64%, transparent 65%),
    radial-gradient(closest-side at 54% 48%, transparent 71%, rgb(189 147 64 / 20%) 72%, transparent 73%),
    radial-gradient(closest-side at 45% 54%, transparent 80%, rgb(189 147 64 / 16%) 81%, transparent 82%) !important;
  transform: rotate(-10deg) !important;
}

@media (max-width: 767px) {
  .faq::before {
    left: -18vw !important;
    right: -18vw !important;
    top: 5.5rem !important;
    height: 8.5rem !important;
    opacity: 0.4 !important;
    background-size: 170% 100% !important;
  }

  .faq::after {
    left: -7rem !important;
    top: 12rem !important;
    width: 22rem !important;
    height: 10rem !important;
    opacity: 0.48 !important;
  }
}

.site-hero {
  background: linear-gradient(90deg, #fffefa 0%, #fffefa 52%, #f7efe8 52%, #f7efe8 100%) !important;
}

.sobre {
  background: #fffdf9 !important;
}

.procedimentos {
  background: linear-gradient(180deg, #faf4ec 0%, #fffefa 100%) !important;
}

.resultados {
  background: #fffaf3 !important;
}

.faq {
  position: relative;
  overflow: hidden;
  background: #fffdf9 !important;
}

.contato {
  background: linear-gradient(135deg, #f8efe4 0%, #fffdf9 72%) !important;
}

.resultados::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: clamp(-6rem, 4vw, 4rem);
  top: clamp(6rem, 13vw, 11rem);
  width: clamp(20rem, 38vw, 38rem);
  height: clamp(18rem, 34vw, 34rem);
  opacity: 0.58 !important;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 50% 50%, transparent 62%, rgb(189 147 64 / 24%) 63%, transparent 64%),
    radial-gradient(closest-side at 55% 48%, transparent 70%, rgb(189 147 64 / 18%) 71%, transparent 72%),
    radial-gradient(closest-side at 45% 55%, transparent 78%, rgb(189 147 64 / 15%) 79%, transparent 80%);
  transform: rotate(-12deg);
}

.resultados::after,
.faq::before {
  display: none !important;
}

.faq-left,
.faq-list {
  position: relative;
  z-index: 1;
}

.resultados .ba-carousel-prompt,
.resultados .ba-carousel-navigation {
  display: none !important;
}

.resultados .before-after-showcase {
  display: grid !important;
  grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem !important;
  align-items: center !important;
  width: min(100%, 36rem) !important;
  max-width: 36rem !important;
  gap: clamp(0.35rem, 1.4vw, 0.75rem) !important;
  margin-inline: auto !important;
}

.resultados .ba-carousel-viewport {
  grid-column: 2 !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.resultados .ba-carousel-track {
  display: flex !important;
  width: 100% !important;
  transform: translateX(calc(var(--ba-current, 0) * -100%)) !important;
  transition: transform 720ms var(--ease-luxury) !important;
}

.resultados .ba-carousel-track > .before-after-card {
  width: 100% !important;
  min-width: 100% !important;
  padding: 0.35rem 0.35rem 0.68rem !important;
  overflow: visible !important;
  border: 1px solid rgb(189 147 64 / 22%) !important;
  border-radius: 8px !important;
  background: #fffefa !important;
  box-shadow: 0 12px 28px rgb(70 49 24 / 5%) !important;
}

.resultados .before-after-slider {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  border-radius: 7px !important;
  box-shadow: none !important;
}

.resultados .before-after-copy {
  margin: 0.62rem 0 0 !important;
  padding-bottom: 0.02rem !important;
  text-align: center !important;
}

.resultados .before-after-copy .proc-number {
  display: none !important;
}

.resultados .before-after-copy h3 {
  margin: 0 !important;
  font-size: clamp(0.95rem, 1.7vw, 1.12rem) !important;
  line-height: 1.2 !important;
}

.resultados .ba-carousel-button {
  display: inline-grid !important;
  grid-row: 1 !important;
  place-items: center !important;
  width: 2.35rem !important;
  height: 2.35rem !important;
  border: 1px solid rgb(189 147 64 / 28%) !important;
  border-radius: 999px !important;
  background: rgb(255 254 250 / 76%) !important;
  color: #a77d2b !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease !important;
}

.resultados .ba-carousel-prev {
  grid-column: 1 !important;
}

.resultados .ba-carousel-next {
  grid-column: 3 !important;
}

.resultados .ba-carousel-button span {
  display: block !important;
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-top: 1.5px solid currentColor !important;
  border-left: 1.5px solid currentColor !important;
}

.resultados .ba-carousel-prev span {
  transform: translateX(0.08rem) rotate(-45deg) !important;
}

.resultados .ba-carousel-next span {
  transform: translateX(-0.08rem) rotate(135deg) !important;
}

.resultados .ba-carousel-button:hover,
.resultados .ba-carousel-button:focus-visible {
  background: #ffffff !important;
  border-color: rgb(189 147 64 / 58%) !important;
  color: #7f622b !important;
  transform: translateY(-1px) scale(1.03) !important;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .site-nav {
    min-height: 4.25rem !important;
    padding-inline: 1rem !important;
  }

  .nav-toggle {
    position: relative;
    z-index: 25;
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    border: 1px solid rgb(189 147 64 / 20%);
    border-radius: 999px;
    background: rgb(255 254 250 / 82%);
    color: #7f622b;
  }

  .nav-toggle span {
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .site-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(0.29rem) rotate(45deg);
  }

  .site-nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-0.29rem) rotate(-45deg);
  }

  .site-nav-links {
    position: absolute;
    inset: calc(100% - 0.45rem) 1rem auto;
    z-index: 24;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid rgb(189 147 64 / 16%);
    border-radius: 8px;
    background: rgb(255 254 250 / 96%);
    box-shadow: 0 18px 42px rgb(70 49 24 / 9%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.menu-open .site-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav-links a {
    justify-content: flex-start;
    min-height: 2.75rem;
    padding-inline: 0.85rem;
  }

  .nav-cta {
    display: none !important;
  }

  .resultados .before-after-showcase {
    grid-template-columns: 2rem minmax(0, 1fr) 2rem !important;
    width: min(100%, 23.5rem) !important;
    gap: 0.35rem !important;
  }

  .resultados .ba-carousel-button {
    width: 2rem !important;
    height: 2rem !important;
  }

  .resultados::before {
    left: -7.5rem;
    top: 9rem;
    width: 23rem;
    height: 21rem;
    opacity: 0.46 !important;
  }
}

/* Override final: ondas na FAQ e elipse em Resultados */
.resultados::before {
  display: none !important;
}

.faq {
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  display: block !important;
  left: -8vw !important;
  right: -8vw !important;
  top: clamp(17rem, 17vw, 17rem) !important;
  width: auto !important;
  height: clamp(8rem, 16vw, 14rem) !important;
  opacity: 0.58 !important;
  pointer-events: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='260' viewBox='0 0 1600 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23bd9340' stroke-width='1.15' opacity='.28'%3E%3Cpath d='M-80 80 C150 18 310 205 540 125 C750 52 875 24 1060 93 C1255 166 1432 48 1680 36'/%3E%3Cpath d='M-80 103 C155 42 315 226 548 150 C760 82 887 50 1072 116 C1260 184 1438 78 1680 62'/%3E%3Cpath d='M-80 126 C160 68 320 244 556 176 C770 112 900 78 1085 141 C1270 204 1445 109 1680 90'/%3E%3Cpath d='M-80 149 C166 94 326 260 566 202 C782 145 912 110 1100 168 C1282 224 1452 142 1680 120'/%3E%3Cpath d='M-80 172 C172 122 334 274 578 228 C794 178 925 142 1116 196 C1297 244 1462 176 1680 152'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: 115% 100% !important;
  transform: none !important;
}

.resultados::after {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  display: block !important;
  left: clamp(0.5rem, 8vw, 8rem) !important;
  top: clamp(7rem, 14vw, 12rem) !important;
  width: clamp(18rem, 32vw, 34rem) !important;
  height: clamp(8rem, 13vw, 13rem) !important;
  opacity: 0.62 !important;
  pointer-events: none !important;
  background:
    radial-gradient(closest-side at 50% 50%, transparent 63%, rgb(189 147 64 / 26%) 64%, transparent 65%),
    radial-gradient(closest-side at 54% 48%, transparent 71%, rgb(189 147 64 / 20%) 72%, transparent 73%),
    radial-gradient(closest-side at 45% 54%, transparent 80%, rgb(189 147 64 / 16%) 81%, transparent 82%) !important;
  transform: rotate(-10deg) !important;
}

.faq::after {
  display: none !important;
}

.faq-left,
.faq-list {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .faq::before {
    left: -18vw !important;
    right: -18vw !important;
    top: 7rem !important;
    height: 8.5rem !important;
    opacity: 0.4 !important;
    background-size: 170% 100% !important;
  }

  .resultados::after {
    left: -7rem !important;
    top: 8rem !important;
    width: 22rem !important;
    height: 10rem !important;
    opacity: 0.48 !important;
  }

  .faq::after {
    display: none !important;
  }
}

/* Hero portrait: same framed-card system used in the Sobre section. */
.site-hero {
  background: #fffdf9 !important;
}

.site-hero::before,
.site-hero::after {
  display: none !important;
}

.hero-media-photo {
  position: relative;
  align-items: flex-end !important;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.25rem, 3.5vw, 3rem) clamp(0.75rem, 1.1vw, 1rem) !important;
  overflow: visible;
  border: 0;
  background: #fffdf9 !important;
  box-shadow: none !important;
  isolation: isolate;
  animation: none !important;
}

.hero-media-photo::before,
.hero-media-photo::after {
  display: none;
}

.hero-media-photo .hero-image-mask {
  --hero-frame-rotate-x: 1deg;
  --hero-frame-rotate-y: -3deg;
  position: relative;
  z-index: 2;
  display: block !important;
  align-self: flex-end;
  width: min(88%, 31rem);
  height: min(78svh, 46rem);
  max-height: calc(100svh - 6rem);
  overflow: visible;
  border: 1px solid rgb(212 160 23 / 26%);
  border-radius: 14px;
  background: #fffefa;
  box-shadow:
    0 28px 70px rgb(70 49 24 / 13%),
    0 0 0 8px rgb(255 254 250 / 72%);
  transform: perspective(900px) rotateY(var(--hero-frame-rotate-y)) rotateX(var(--hero-frame-rotate-x));
  transition:
    opacity 950ms var(--ease-luxury),
    transform 680ms var(--ease-luxury),
    box-shadow 520ms ease,
    border-color 420ms ease !important;
}

.hero-media-photo .hero-image-mask::before,
.hero-media-photo .hero-image-mask::after {
  position: absolute;
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.hero-media-photo .hero-image-mask::before {
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border: 1px solid rgb(212 160 23 / 24%);
  background: linear-gradient(135deg, rgb(212 160 23 / 10%), transparent 56%);
}

.hero-media-photo .hero-image-mask::after {
  inset: -0.7rem 0.7rem 0.7rem -0.7rem;
  z-index: 2;
  border-top: 1px solid rgb(255 255 255 / 70%);
  border-left: 1px solid rgb(255 255 255 / 62%);
}

.hero-media-photo .hero-image-mask::before,
.hero-media-photo .hero-image-mask::after {
  opacity: 1;
  transform: scale(1);
  transform-origin: center;
  transition:
    opacity 720ms ease,
    transform 900ms var(--ease-luxury);
}

.hero-media-photo .hero-image {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top !important;
  filter: none;
  opacity: 1;
  pointer-events: none;
  transform: none !important;
  transition:
    opacity 1100ms var(--ease-luxury) 100ms,
    filter 520ms ease,
    transform 680ms var(--ease-luxury) !important;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media-photo.is-loading .hero-image-mask {
    opacity: 0;
    transform: perspective(900px) translateY(1.5rem) rotateY(var(--hero-frame-rotate-y)) rotateX(var(--hero-frame-rotate-x)) scale(0.975);
    will-change: opacity, transform;
  }

  .hero-media-photo.is-loading .hero-image-mask::before,
  .hero-media-photo.is-loading .hero-image-mask::after {
    opacity: 0;
    transform: scale(0.94);
  }

  .hero-media-photo.is-loading .hero-image {
    opacity: 0;
    transform: scale(1.045) !important;
    will-change: opacity, transform;
  }

  .hero-media-photo.is-ready .hero-image-mask {
    opacity: 1;
    transform: perspective(900px) rotateY(var(--hero-frame-rotate-y)) rotateX(var(--hero-frame-rotate-x));
  }

  .hero-media-photo.is-ready .hero-image-mask::before,
  .hero-media-photo.is-ready .hero-image-mask::after {
    opacity: 1;
    transform: scale(1);
  }

  .hero-media-photo.is-ready .hero-image {
    opacity: 1;
    transform: none !important;
    will-change: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-media-photo .hero-image-mask:hover {
    border-color: rgb(212 160 23 / 46%);
    box-shadow:
      0 34px 82px rgb(70 49 24 / 16%),
      0 0 0 8px rgb(255 246 218 / 76%);
    transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-3px) !important;
  }

  .hero-media-photo .hero-image-mask:hover .hero-image {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.025) !important;
  }
}

@media (max-width: 767px) {
  .hero-media-photo {
    height: min(48svh, 24rem) !important;
    min-height: 17rem !important;
    padding: 1rem 1rem 0.75rem !important;
  }

  .hero-media-photo .hero-image-mask {
    --hero-frame-rotate-x: 0.65deg;
    --hero-frame-rotate-y: -2deg;
    width: min(84%, 20rem);
    height: min(43svh, 21rem);
    max-height: calc(48svh - 1rem);
    border-radius: 12px;
    box-shadow:
      0 18px 42px rgb(70 49 24 / 10%),
      0 0 0 6px rgb(255 254 250 / 70%);
    transform: perspective(900px) rotateY(var(--hero-frame-rotate-y)) rotateX(var(--hero-frame-rotate-x));
  }

  .hero-media-photo .hero-image-mask::before {
    inset: 0.75rem -0.75rem -0.75rem 0.75rem;
    border-radius: 12px;
  }

  .hero-media-photo .hero-image-mask::after {
    inset: -0.5rem 0.5rem 0.5rem -0.5rem;
    border-radius: 12px;
  }

  .hero-media-photo .hero-image {
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal]:not(.is-visible) {
    opacity: 0 !important;
    filter: none !important;
    transform: none !important;
    transition: opacity 520ms ease !important;
  }

  [data-reveal].is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: opacity 520ms ease !important;
  }

  .hero-media-photo .hero-image-mask,
  .hero-media-photo .hero-image {
    opacity: 1 !important;
  }

  .hero-media-photo .hero-image-mask {
    transform: perspective(900px) rotateY(var(--hero-frame-rotate-y)) rotateX(var(--hero-frame-rotate-x)) !important;
    transition:
      opacity 720ms ease,
      transform 520ms var(--ease-luxury),
      border-color 180ms ease,
      box-shadow 180ms ease !important;
  }

  .hero-media-photo .hero-image {
    filter: none !important;
    transform: none !important;
    transition:
      opacity 820ms ease 80ms,
      filter 420ms ease,
      transform 520ms var(--ease-luxury) !important;
  }

  .hero-media-photo .hero-image-mask::before,
  .hero-media-photo .hero-image-mask::after {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 520ms ease !important;
  }

  .hero-media-photo.is-loading .hero-image-mask,
  .hero-media-photo.is-loading .hero-image-mask::before,
  .hero-media-photo.is-loading .hero-image-mask::after,
  .hero-media-photo.is-loading .hero-image {
    opacity: 0 !important;
  }

  .hero-media-photo.is-ready .hero-image-mask,
  .hero-media-photo.is-ready .hero-image-mask::before,
  .hero-media-photo.is-ready .hero-image-mask::after,
  .hero-media-photo.is-ready .hero-image {
    opacity: 1 !important;
  }
}

/* Paleta final solicitada: dourado amarelado e meio claro. */
:root {
  --color-gold: #c9a227;
  --color-gold-mid: #d9b83e;
  --color-gold-soft: #ecd36e;
  --color-gold-pale: #fff5cf;
  --color-gold-text: #806000;
  --color-line: rgb(201 162 39 / 24%);
  --focus-ring: #806000;
}

.hero-title-accent,
.resultados .ba-handle {
  color: var(--color-gold) !important;
}

.section-tag,
.proc-link,
.nav-cta,
.contact-action,
.faq-cta,
.footer-cta,
.faq-icon,
.resultados .ba-carousel-button {
  color: var(--color-gold-text) !important;
}

.section-tag::after {
  background: linear-gradient(90deg, rgb(201 162 39 / 76%), transparent) !important;
}

.nav-cta,
.contact-action,
.faq-cta,
.footer-cta,
.resultados .ba-carousel-button {
  border-color: rgb(201 162 39 / 44%) !important;
}

.hero-cta,
.nav-cta:hover,
.nav-cta:focus-visible,
.contact-action:hover,
.contact-action:focus-visible,
.faq-cta:hover,
.faq-cta:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  background: var(--color-gold) !important;
  border-color: rgb(201 162 39 / 72%) !important;
  color: #2f2500 !important;
}

.hero-cta *,
.nav-cta:hover *,
.nav-cta:focus-visible *,
.contact-action:hover *,
.contact-action:focus-visible *,
.faq-cta:hover *,
.faq-cta:focus-visible *,
.footer-cta:hover *,
.footer-cta:focus-visible * {
  color: #2f2500 !important;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.section-tag:hover,
.faq-question:hover span {
  color: #705300 !important;
}

/* Ajustes consolidados: CTA da hero e duas unidades de atendimento */
.hero-cta,
.hero-cta span,
.hero-cta:hover,
.hero-cta:focus-visible,
.hero-cta:hover span,
.hero-cta:focus-visible span {
  color: #ffffff !important;
}

.contato-panel {
  display: block;
}

.contato-copy {
  max-width: 52rem;
  margin: 0 auto clamp(2.75rem, 6vw, 4.75rem);
  text-align: center;
}

.contato-copy p:last-child {
  max-width: 44rem !important;
  margin-inline: auto;
}

.contato-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contato-details {
  min-width: 0;
  text-align: center;
}

.contact-city {
  margin: 0;
  color: var(--color-ink);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.contact-row,
.contact-address {
  text-align: center;
}

.contact-address {
  margin: 0;
  font: inherit;
}

.contact-actions {
  justify-content: center;
}

@media (max-width: 760px) {
  .contato-copy {
    margin-bottom: 2.75rem;
  }

  .contato-locations {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.footer-locations {
  display: grid;
  gap: 1rem;
}

.footer-location {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  color: var(--color-muted);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-location strong {
  color: var(--color-ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-location a {
  color: inherit;
}

/* Ajustes pontuais: contato com divisor delicado e acentos em dourado */
.contato-locations {
  position: relative;
}

.contato-locations::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(190 143 48 / 0.2) 14%,
    rgb(190 143 48 / 0.38) 50%,
    rgb(190 143 48 / 0.2) 86%,
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.contato-locations::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid rgb(190 143 48 / 0.44);
  border-radius: 999px;
  background: #fffaf4;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-city::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1px;
  margin: 0.7rem auto 0;
  background: linear-gradient(90deg, transparent, rgb(190 143 48 / 0.65), transparent);
}

.proc-icon,
.marquee-dot,
.section-tag::after {
  background-color: rgb(190 143 48 / 0.58) !important;
  border-color: rgb(190 143 48 / 0.58) !important;
}

.proc-icon {
  color: #8a6512 !important;
}

.proc-card:hover .proc-number,
.contact-action:hover,
.contact-action:focus-visible {
  color: #8a6512 !important;
}

@media (max-width: 760px) {
  .contato-locations::before {
    left: 50%;
    top: calc(50% - 1.75rem);
    bottom: auto;
    width: min(12rem, 46vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(190 143 48 / 0.4), transparent);
  }

  .contato-locations::after {
    top: calc(50% - 1.75rem);
  }
}

/* Ajustes finais: contato mobile, etiquetas de seção e cor dos números */
.contato-details {
  border-top: 0 !important;
}

.contact-city::after {
  display: none !important;
}

.contact-actions {
  gap: 0.72rem !important;
}

.contact-action {
  position: relative;
}

.contact-action:hover,
.contact-action:focus-visible {
  background: #ffffff !important;
  border-color: rgb(122 90 19 / 32%) !important;
  color: #5f4309 !important;
  transform: translateY(-0.08rem) !important;
}

.contact-switch {
  display: none;
}

.procedimentos.is-visible .section-tag,
.procedimentos:hover .section-tag,
.procedimentos:focus-within .section-tag,
.sobre.is-visible .section-tag,
.sobre:hover .section-tag,
.sobre:focus-within .section-tag,
.faq.is-visible .section-tag,
.faq:hover .section-tag,
.faq:focus-within .section-tag {
  color: #7b5810 !important;
  transform: translateX(0.34rem) !important;
}

.procedimentos.is-visible .section-tag::after,
.procedimentos:hover .section-tag::after,
.procedimentos:focus-within .section-tag::after,
.sobre.is-visible .section-tag::after,
.sobre:hover .section-tag::after,
.sobre:focus-within .section-tag::after,
.faq.is-visible .section-tag::after,
.faq:hover .section-tag::after,
.faq:focus-within .section-tag::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.proc-icon {
  background-color: transparent !important;
  border-color: transparent !important;
  color: rgb(96 70 16 / 31%) !important;
}

.proc-card:hover .proc-icon {
  color: rgb(96 70 16 / 46%) !important;
}

.section-tag::after {
  background: linear-gradient(90deg, rgb(122 90 19 / 45%), transparent) !important;
}

.marquee-dot {
  background-color: rgb(122 90 19 / 38%) !important;
  border-color: rgb(122 90 19 / 28%) !important;
}

.ba-mouth-slide .ba-pane img {
  object-position: 50% 50% !important;
}

@media (min-width: 761px) {
  .contact-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .contato-locations {
    display: block !important;
  }

  .contato-details {
    display: none;
    animation: contactFadeIn 360ms ease both;
  }

  .contato-details.is-active {
    display: block;
  }

  .contato-locations::before,
  .contato-locations::after {
    display: none !important;
  }

  .contact-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.72rem !important;
  }

  .contact-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    margin-top: 0.85rem;
    border: 1px solid rgb(122 90 19 / 20%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgb(255 255 255 / 82%), rgb(255 250 242 / 9%));
    color: #7b5810;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .contact-switch:active {
    transform: translateY(1px);
  }
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajuste final: detalhe ativo quando a seção está na tela */
.section-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 0.72rem;
  transition: color 180ms ease, transform 180ms ease;
}

.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgb(122 90 19 / 45%), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease, opacity 180ms ease;
}

.procedimentos.is-visible .section-tag,
.procedimentos:hover .section-tag,
.procedimentos:focus-within .section-tag,
.resultados.is-visible .section-tag,
.resultados:hover .section-tag,
.resultados:focus-within .section-tag,
.faq.is-visible .section-tag,
.faq:hover .section-tag,
.faq:focus-within .section-tag,
.sobre.is-visible .section-eyebrow,
.sobre:hover .section-eyebrow,
.sobre:focus-within .section-eyebrow {
  color: #7b5810 !important;
  transform: translateX(0.34rem) !important;
}

.procedimentos.is-visible .section-tag::after,
.procedimentos:hover .section-tag::after,
.procedimentos:focus-within .section-tag::after,
.resultados.is-visible .section-tag::after,
.resultados:hover .section-tag::after,
.resultados:focus-within .section-tag::after,
.faq.is-visible .section-tag::after,
.faq:hover .section-tag::after,
.faq:focus-within .section-tag::after,
.sobre.is-visible .section-eyebrow::after,
.sobre:hover .section-eyebrow::after,
.sobre:focus-within .section-eyebrow::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

/* Override: a barrinha só aparece na seção atual do scroll */
.procedimentos .section-tag,
.resultados .section-tag,
.faq .section-tag,
.contato .section-tag,
.sobre .section-eyebrow {
  transform: translateX(0) !important;
}

.procedimentos .section-tag::after,
.resultados .section-tag::after,
.faq .section-tag::after,
.contato .section-tag::after,
.sobre .section-eyebrow::after {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.procedimentos.is-section-active .section-tag,
.resultados.is-section-active .section-tag,
.faq.is-section-active .section-tag,
.contato.is-section-active .section-tag,
.sobre.is-section-active .section-eyebrow {
  color: #7b5810 !important;
  transform: translateX(0.34rem) !important;
}

.procedimentos.is-section-active .section-tag::after,
.resultados.is-section-active .section-tag::after,
.faq.is-section-active .section-tag::after,
.contato.is-section-active .section-tag::after,
.sobre.is-section-active .section-eyebrow::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

/* Ajustes finais: títulos sem detalhe, foto labial e botão social alternado */
.sobre .section-eyebrow,
.sobre.is-section-active .section-eyebrow,
.sobre:hover .section-eyebrow,
.sobre:focus-within .section-eyebrow,
.procedimentos .section-tag,
.procedimentos.is-section-active .section-tag,
.procedimentos:hover .section-tag,
.procedimentos:focus-within .section-tag,
.resultados .section-tag,
.resultados.is-section-active .section-tag,
.resultados:hover .section-tag,
.resultados:focus-within .section-tag {
  transform: none !important;
}

.sobre .section-eyebrow::after,
.sobre.is-section-active .section-eyebrow::after,
.sobre:hover .section-eyebrow::after,
.sobre:focus-within .section-eyebrow::after,
.procedimentos .section-tag::after,
.procedimentos.is-section-active .section-tag::after,
.procedimentos:hover .section-tag::after,
.procedimentos:focus-within .section-tag::after,
.resultados .section-tag::after,
.resultados.is-section-active .section-tag::after,
.resultados:hover .section-tag::after,
.resultados:focus-within .section-tag::after {
  display: none !important;
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.faq .section-tag::after,
.faq.is-section-active .section-tag::after,
.faq:hover .section-tag::after,
.faq:focus-within .section-tag::after {
  display: none !important;
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.ba-mouth-slide .ba-before img {
  transform: none !important;
  object-position: 50% 50% !important;
}

.ba-mouth-slide .ba-after img {
  transform: scale(1.14) !important;
  transform-origin: 56% 50% !important;
  object-position: 56% 50% !important;
}

.contact-actions {
  display: flex !important;
  justify-content: center !important;
}

.contact-action {
  width: min(100%, 16rem) !important;
}

.floating-whatsapp {
  overflow: hidden;
  transition: background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease !important;
}

.floating-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 360ms ease, transform 360ms ease !important;
  will-change: opacity, transform;
}

.floating-icon-instagram {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72) rotate(-12deg);
}

.floating-whatsapp.is-switching .floating-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.floating-whatsapp.is-instagram {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, transparent 38%),
    radial-gradient(circle at 20% 20%, #fa7e1e 0 16%, transparent 36%),
    linear-gradient(135deg, #833ab4, #c13584 46%, #e1306c 78%, #fd1d1d) !important;
  box-shadow: 0 18px 40px rgb(193 53 132 / 26%) !important;
}

.floating-whatsapp.is-instagram .floating-icon-whatsapp {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72) rotate(12deg);
}

.floating-whatsapp.is-instagram .floating-icon-instagram {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Ajustes mobile da troca de endereços */
@media (max-width: 760px) {
  .contato-details {
    padding-top: 0.25rem !important;
  }

  .contact-city {
    margin-bottom: 0.72rem !important;
  }

  .contact-row {
    gap: 0.42rem !important;
    margin-bottom: 1.05rem !important;
  }

  .contact-label {
    display: block !important;
    margin-bottom: 0.42rem !important;
  }

  .contact-address {
    line-height: 1.65 !important;
  }

  .contact-actions {
    display: none !important;
  }

  .contact-switch {
    margin-top: 1.08rem !important;
    border-color: rgb(167 124 29 / 34%) !important;
    background: rgb(255 254 250 / 82%) !important;
    color: #9c7414 !important;
    box-shadow: none !important;
    font-family: inherit !important;
    font-size: 0.66rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.17em !important;
  }

  .contato-details.is-leaving {
    display: block !important;
    animation: contactFadeOut 220ms ease both !important;
  }

  .contato-details.is-entering {
    animation: contactFadeIn 360ms ease both !important;
  }
}

@keyframes contactFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-0.45rem);
  }
}

/* Ajuste final: rótulos sem barrinha e seções centralizadas no mobile */
.section-tag::after,
.section-eyebrow::after {
  display: none !important;
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.section-tag,
.section-eyebrow,
.section-tag:hover,
.section-eyebrow:hover,
.is-section-active .section-tag,
.is-section-active .section-eyebrow {
  transform: none !important;
}

@media (max-width: 760px) {
  .hero-copy,
  .sobre-content,
  .section-header,
  .resultados-header,
  .faq-left,
  .contato-copy {
    text-align: center !important;
    align-items: center !important;
    justify-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-copy > *,
  .sobre-content > *,
  .section-header > *,
  .resultados-header > *,
  .faq-left > *,
  .contato-copy > * {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-header {
    grid-template-columns: 1fr !important;
  }

  .section-header-right,
  .resultados-header .section-header-right,
  .faq-left p,
  .contato-copy p {
    max-width: 34rem !important;
    text-align: center !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .sobre-credentials,
  .sobre-cred {
    text-align: center !important;
    align-items: center !important;
    justify-items: center !important;
  }

  .sobre-credentials {
    width: 100% !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 1.05rem !important;
  }

  .sobre-cred {
    width: 100% !important;
  }

  .nav-toggle:focus-visible,
  .contact-switch:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
  }
}

/* Ajuste fino: home alinhada em celulares */
@media (max-width: 767px) {
  .hero-media-photo .hero-image-mask {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-content {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-left: max(1.5rem, env(safe-area-inset-left)) !important;
    padding-right: max(1.5rem, env(safe-area-inset-right)) !important;
  }

  .hero-copy {
    width: min(100%, 35rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-kicker,
  .hero-copy h1,
  .hero-description,
  .hero-actions {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-copy h1 {
    width: fit-content !important;
    max-width: min(100%, 14ch) !important;
    transform: translateX(-0.12em);
  }

  .hero-actions {
    width: min(100%, 34rem) !important;
  }

  .hero-cta {
    width: 100% !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: only light;
  }

  html,
  body {
    background-color: #fffdf9 !important;
    color: var(--color-ink) !important;
  }

  .hero-cta {
    background: var(--color-gold) !important;
    border-color: rgb(201 162 39 / 72%) !important;
    color: #ffffff !important;
  }

  .hero-cta span {
    color: #ffffff !important;
  }

  .floating-whatsapp {
    background: #25d366 !important;
  }

  .floating-whatsapp.is-instagram {
    background:
      radial-gradient(circle at 30% 105%, #feda75 0 18%, transparent 38%),
      radial-gradient(circle at 20% 20%, #fa7e1e 0 16%, transparent 36%),
      linear-gradient(135deg, #833ab4, #c13584 46%, #e1306c 78%, #fd1d1d) !important;
  }
}
