/* ============================================================
   Dra Aline Moreira · Enfermeira Esteta
   Luxo editorial · champagne, bronze e dourado
   ============================================================ */

:root {
  --cream: #f7f2e9;
  --cream-2: #efe6d6;
  --cream-3: #e7dbc5;
  --ink: #2c2115;
  --ink-soft: #5b4a38;
  --bronze: #8a6b4d;
  --gold: #b98f52;
  --gold-light: #d9c091;
  --gold-pale: #ecdfc3;
  --dark: #211810;
  --dark-2: #2e2417;
  --white: #fffdf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Avenir Next", sans-serif;
  --ease: cubic-bezier(.22, .61, .21, 1);
  --shadow-soft: 0 24px 60px -24px rgba(44, 33, 21, .28);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: .01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold-light); color: var(--ink); }

.container {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}

/* ---------- grão sutil ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ---------- tipografia ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}

h2.section-title {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  margin: .9rem 0 1.1rem;
}
h2 .it, h1 .it { font-style: italic; color: var(--bronze); }

.lead {
  color: var(--ink-soft);
  max-width: 56ch;
  font-size: 1.02rem;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 999px;
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: linear-gradient(120deg, #a7793d, var(--gold) 45%, #dcc08a 60%, var(--gold));
  background-size: 200% 100%;
  color: var(--white);
  box-shadow: 0 14px 34px -14px rgba(155, 118, 62, .65);
}
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); }

.btn-line {
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
}
.btn-line:hover { background: var(--gold); color: var(--white); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--bronze); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: all .5s var(--ease);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(247, 242, 233, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .55rem 0;
  box-shadow: 0 1px 0 rgba(185, 143, 82, .22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { height: 46px; width: auto; transition: height .5s var(--ease); }
.site-header.scrolled .brand img { height: 38px; }

.nav-desktop { display: none; }

.header-cta { display: none; }

.nav-toggle {
  width: 46px; height: 46px;
  border: 1px solid rgba(138, 107, 77, .4);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 70;
  transition: background .4s;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--ink);
  position: relative;
  transition: background .3s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.6px;
  background: var(--ink);
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .site-header {
  z-index: 70;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.nav-open .brand, body.nav-open .header-cta { opacity: 0; pointer-events: none; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle { border-color: rgba(217, 192, 145, .5); }
body.nav-open .nav-toggle span::before,
body.nav-open .nav-toggle span::after { background: var(--cream); }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* menu mobile em tela cheia */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path .8s var(--ease);
  visibility: hidden;
}
body.nav-open .nav-overlay {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  visibility: visible;
}
.nav-overlay ul { display: grid; gap: .35rem; }
.nav-overlay a.nav-link {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7vw, 2.7rem);
  line-height: 1.3;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  gap: .9rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
}
body.nav-open .nav-overlay a.nav-link { opacity: 1; transform: none; }
.nav-overlay a.nav-link:hover { color: var(--gold-light); font-style: italic; }
.nav-overlay a.nav-link small {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--gold);
}
.nav-overlay .nav-foot {
  margin-top: 3rem;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247, 242, 233, .55);
  display: grid;
  gap: .4rem;
}
.nav-overlay .nav-foot a:hover { color: var(--gold-light); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 85% 10%, rgba(217, 192, 145, .35), transparent 60%),
    radial-gradient(70% 55% at 8% 90%, rgba(185, 143, 82, .18), transparent 60%),
    linear-gradient(175deg, var(--cream) 20%, var(--cream-2) 70%, var(--cream-3));
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  padding-top: 6.2rem;
  flex: 1;
}
.hero-copy { text-align: center; padding-top: 1.2rem; }
.hero-copy .eyebrow { justify-content: center; }
.hero-copy .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-title {
  font-size: clamp(2.7rem, 10.5vw, 5.6rem);
  margin: 1rem 0 1.1rem;
  letter-spacing: -.01em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  animation: riseUp 1.1s var(--ease) forwards;
}
.hero-title .line:nth-child(2) > span { animation-delay: .15s; }
@keyframes riseUp { to { transform: none; } }

.hero-sub {
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 auto 1.6rem;
  font-size: 1.02rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .5s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .7s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* figura do hero: aura luminosa moderna */
.hero-figure {
  position: relative;
  margin: 2.2rem auto 0;
  width: min(86vw, 400px);
  aspect-ratio: 4 / 4.6;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  inset: -12% -14% 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 92%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(233, 214, 173, .95), rgba(210, 176, 120, .55) 45%, rgba(210, 176, 120, 0) 72%);
  filter: blur(6px);
  animation: glowPulse 9s ease-in-out infinite;
}
.hero-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 74%;
  height: 32%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(138, 107, 77, .3), transparent 70%);
  filter: blur(14px);
}
@keyframes glowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.05); opacity: .88; }
}
.hero-glow .ring {
  position: absolute;
  left: 50%;
  top: 14%;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 82, .28);
  transform: translateX(-50%);
  animation: ringIn 1.5s var(--ease) both;
}
.hero-glow .r1 { width: 88%; aspect-ratio: 1; animation-delay: .35s; }
.hero-glow .r2 { width: 102%; aspect-ratio: 1; top: 8%; border-color: rgba(185, 143, 82, .18); animation-delay: .5s; }
.hero-glow .r3 { width: 116%; aspect-ratio: 1; top: 2%; border-color: rgba(185, 143, 82, .1); animation-delay: .65s; }
@keyframes ringIn {
  from { opacity: 0; transform: translateX(-50%) scale(.82); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}
.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: -1px;
  filter: drop-shadow(0 10px 18px rgba(44, 33, 21, .22));
  -webkit-mask-image: linear-gradient(180deg, #000 84%, rgba(0, 0, 0, .45) 95%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 84%, rgba(0, 0, 0, .45) 95%, transparent 100%);
  opacity: 0;
  animation: heroPhoto 1.2s var(--ease) .45s forwards;
}
/* sombra de contato: assenta a foto sobre a faixa */
.hero-figure::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 66%;
  height: 26px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(93, 71, 46, .42), transparent 72%);
  filter: blur(7px);
  z-index: 1;
  pointer-events: none;
}
@keyframes heroPhoto {
  from { opacity: 0; transform: translateY(34px) scale(.97); }
  to { opacity: 1; transform: none; }
}

/* monograma gigante ao fundo */
.hero-mono {
  position: absolute;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(16rem, 46vw, 34rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(138, 107, 77, .12);
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
  font-style: italic;
}

/* faixa marquee */
.marquee {
  position: relative;
  z-index: 5;
  background: var(--dark);
  color: var(--gold-pale);
  overflow: hidden;
  padding: .95rem 0;
  border-top: 1px solid rgba(217, 192, 145, .25);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}
.marquee span::after { content: "✦"; font-size: .7rem; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- seções ---------- */
section { position: relative; }
.section-pad { padding: 5.5rem 0; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* entrada descendo, em cascata conforme a rolagem */
.reveal-down {
  opacity: 0;
  transform: translateY(-46px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-down.in { opacity: 1; transform: none; }
.reveal-img {
  clip-path: inset(8% 8% 8% 8% round var(--radius));
  transition: clip-path 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal-img.in { clip-path: inset(0 0 0 0 round var(--radius)); }

/* ---------- sobre ---------- */
.sobre { background: var(--white); }
.sobre-grid { display: grid; gap: 2.6rem; }
.sobre-figure { position: relative; width: min(100%, 420px); margin-inline: auto; }
.sobre-figure .main-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: 50% 30%;
}
.sobre-figure::before {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .7;
}
.sobre-figure::after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 78px;
  height: 78px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  border-radius: 6px 0 0 0;
  opacity: .8;
}
.sobre-badge {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--gold-pale);
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.sobre-copy h2 { font-size: clamp(2rem, 6vw, 3.1rem); margin: .9rem 0 1.2rem; }
.sobre-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.6rem 0;
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 600;
  color: var(--bronze);
  line-height: 1;
}
.stat small {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.assinatura {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--bronze);
}

/* ---------- divisória ornamental ---------- */
.divider-ornate {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 4.2rem 0;
  position: relative;
  overflow: hidden;
}
.divider-ornate::before, .divider-ornate::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border: 1px solid rgba(217, 192, 145, .14);
  border-radius: 50%;
}
.divider-ornate::before { top: -170px; left: -120px; }
.divider-ornate::after { bottom: -170px; right: -120px; }
.divider-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.divider-lines .line {
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1.4s var(--ease) .2s;
}
.divider-ornate.in .divider-lines .line { width: min(26vw, 220px); }
.divider-lines img {
  height: 74px;
  width: auto;
  opacity: 0;
  transform: scale(.7) rotate(-8deg);
  transition: all 1.1s var(--ease) .4s;
}
.divider-ornate.in .divider-lines img { opacity: 1; transform: none; }
.divider-quote {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 4.5vw, 1.9rem);
  color: var(--gold-pale);
  max-width: 34ch;
  margin-inline: auto;
  line-height: 1.4;
}
.divider-quote small {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- procedimentos: cards empilhados ---------- */
.procedimentos { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.stack-wrap { margin-top: 2.5rem; }
.stack-card {
  position: sticky;
  top: 90px;
  margin-bottom: 1.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(185, 143, 82, .25);
  box-shadow: 0 -12px 44px -22px rgba(44, 33, 21, .35);
  display: grid;
  transform-origin: top center;
  transition: transform .2s linear, filter .2s linear;
  will-change: transform;
}
.stack-card .sc-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.stack-card .sc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.stack-card:hover .sc-media img { transform: scale(1.06); }
.stack-card .sc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(33, 24, 16, .35));
}
.sc-num {
  position: absolute;
  top: 1rem; left: 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  background: rgba(33, 24, 16, .5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 253, 248, .3);
  border-radius: 999px;
  padding: .25rem .85rem;
}
/* aviso de imagem ilustrativa */
.ilustrativa {
  position: absolute;
  z-index: 3;
  right: .7rem;
  bottom: .7rem;
  background: rgba(33, 24, 16, .58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(236, 223, 195, .3);
  color: var(--gold-pale);
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
}

.sc-body { padding: 1.6rem 1.5rem 1.8rem; }
.sc-body h3 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: .5rem;
}
.sc-body p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.1rem; }
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--gold);
  padding-bottom: .35rem;
  transition: gap .4s var(--ease), color .3s;
}
.sc-link:hover { gap: 1.1rem; color: var(--ink); }

/* ---------- resultados ---------- */
.resultados { background: var(--white); }
.res-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  margin-bottom: 2.6rem;
}
.res-head .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.res-head .section-title { margin-bottom: 0; }
.res-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}
.res-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(44, 33, 21, .4);
}
.res-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 1s var(--ease);
}
.res-item:hover img { transform: scale(1.07); }
.res-item figcaption {
  position: absolute;
  left: .7rem; right: .7rem; bottom: .7rem;
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: .5rem .8rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  text-align: center;
  transform: translateY(120%);
  opacity: 0;
  transition: all .5s var(--ease);
}
.res-item:hover figcaption { transform: none; opacity: 1; }
.res-item.tall { grid-row: span 2; }
.res-item.tall img { aspect-ratio: auto; }

/* ---------- clínica ---------- */
.clinica { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.clinica-grid { display: grid; gap: 2.4rem; }
.clinica-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.clinica-photos img {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.clinica-photos img:first-child {
  grid-column: 1 / -1;
  border-radius: 16px;
}
.clinica-list { margin: 1.4rem 0 1.8rem; display: grid; gap: .85rem; }
.clinica-list li {
  display: flex;
  gap: .9rem;
  align-items: baseline;
  color: var(--ink-soft);
}
.clinica-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: .8rem;
  flex-shrink: 0;
}

/* ---------- CTA final ---------- */
.cta-final {
  background:
    radial-gradient(80% 90% at 50% 110%, rgba(185, 143, 82, .35), transparent 60%),
    var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}
.cta-final h2 {
  color: var(--cream);
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  margin: 1rem 0 1.2rem;
}
.cta-final h2 .it { color: var(--gold-light); }
.cta-final p {
  color: rgba(247, 242, 233, .72);
  max-width: 44ch;
  margin: 0 auto 2rem;
}
.cta-final .eyebrow { color: var(--gold-light); justify-content: center; }
.cta-final .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- footer ---------- */
.site-footer {
  background: #1a1209;
  color: rgba(247, 242, 233, .68);
  padding: 3.6rem 0 2rem;
  font-size: .88rem;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  text-align: center;
  justify-items: center;
}
.site-footer img.f-logo { height: 64px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
.footer-nav a {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(217, 192, 145, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .4s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(217, 192, 145, .14);
  font-size: .72rem;
  letter-spacing: .08em;
  text-align: center;
  color: rgba(247, 242, 233, .4);
}

/* ---------- whatsapp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 55;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #22c15e;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px -12px rgba(34, 193, 94, .65);
  transition: transform .4s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #22c15e;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  from { transform: scale(1); opacity: .7; }
  to { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   páginas de procedimento
   ============================================================ */
.proc-hero {
  padding: 8.5rem 0 4rem;
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(217, 192, 145, .4), transparent 55%),
    linear-gradient(170deg, var(--cream), var(--cream-2));
  overflow: hidden;
  position: relative;
}
.breadcrumb {
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.4rem;
  justify-content: center;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--gold); }
.proc-hero h1 {
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  margin-bottom: 1rem;
}
.proc-hero .lead { margin-bottom: 1.8rem; }
.proc-hero-grid { display: grid; gap: 2.6rem; align-items: center; }
.proc-hero-copy { text-align: center; }
.proc-hero-copy .eyebrow { justify-content: center; }
.proc-hero-copy .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.proc-hero-copy .lead { margin-inline: auto; }
.proc-hero-copy .hero-actions { justify-content: center; }
.proc-hero-figure { position: relative; width: min(100%, 430px); margin-inline: auto; }
.proc-hero-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.4;
}

.proc-info { background: var(--white); }
.proc-info-grid { display: grid; gap: 2.6rem; }
.proc-topics { display: grid; gap: 1.5rem; margin-top: 1.8rem; }
.topic {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}
.topic h3 { font-size: 1.45rem; margin-bottom: .35rem; }
.topic p { color: var(--ink-soft); font-size: .95rem; }

.proc-beneficios { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.benef-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.2rem;
}
.benef-card {
  background: var(--white);
  border: 1px solid rgba(185, 143, 82, .22);
  border-radius: 18px;
  padding: 1.7rem 1.5rem;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.benef-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
/* entrada em cascata sem conflitar com o hover */
.benef-card.reveal-down { opacity: 0; transform: none; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.benef-card.reveal-down.in { animation: dropIn .95s var(--ease) var(--d, 0s) both; }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-46px); }
  to { opacity: 1; transform: none; }
}
.benef-card h3 {
  font-size: 1.35rem;
  margin-bottom: .4rem;
  padding-top: 1.1rem;
  position: relative;
}
.benef-card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 1s var(--ease) .3s;
}
.benef-card.in h3::before { width: 54px; }
.benef-card p { color: var(--ink-soft); font-size: .92rem; }

.proc-faq { background: var(--white); }
.faq-list { margin-top: 2rem; display: grid; gap: .9rem; }
.faq-item {
  border: 1px solid rgba(185, 143, 82, .28);
  border-radius: 16px;
  background: var(--cream);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .4s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: .94rem;
}

.proc-outros { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.outros-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
.outro-card {
  background: var(--white);
  border: 1px solid rgba(185, 143, 82, .25);
  border-radius: 16px;
  padding: 1.3rem 1.1rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  transition: all .45s var(--ease);
}
.outro-card small {
  display: block;
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: .3rem;
}
.outro-card:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-4px);
}
.outro-card:hover small { color: var(--gold-light); }

/* ---------- desktop ---------- */
@media (min-width: 768px) {
  .res-grid { grid-template-columns: repeat(3, 1fr); }
  .benef-grid { grid-template-columns: repeat(2, 1fr); }
  .outros-grid { grid-template-columns: repeat(4, 1fr); }
  .stack-card { grid-template-columns: 1fr 1.15fr; }
  .stack-card .sc-media { height: auto; min-height: 300px; }
  .sc-body { padding: 2.6rem 2.4rem; align-self: center; }
  .hero-inner { padding-top: 7rem; }
}

@media (min-width: 1024px) {
  .container { width: min(100% - 4rem, 1180px); }
  .section-pad { padding: 7.5rem 0; }

  .nav-desktop {
    display: flex;
    gap: 2.2rem;
  }
  .nav-desktop a {
    font-size: .72rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    position: relative;
    padding: .3rem 0;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
  }
  .nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-cta { display: inline-flex; padding: .75rem 1.5rem; }
  .nav-toggle { display: none; }

  .hero { flex-direction: column; }
  .hero-inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 2rem;
    padding-top: 5rem;
  }
  .hero-copy { text-align: left; padding-top: 0; }
  .hero-copy .eyebrow { justify-content: flex-start; }
  .hero-sub { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-figure { width: min(34vw, 440px); margin: 0 auto; }
  .hero-mono { left: 72%; top: 30%; }

  .sobre-grid { grid-template-columns: .9fr 1.1fr; align-items: center; gap: 4.5rem; }
  .clinica-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4.5rem; }
  .proc-hero-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
  .proc-info-grid { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; }
  .benef-grid { grid-template-columns: repeat(3, 1fr); }

  .stack-card { min-height: 380px; }
  .stack-card .sc-media { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-down, .hero-title .line > span, .hero-sub, .hero-actions, .hero-photo { opacity: 1; transform: none; }
}
