/* =========================================================
   Clínica Lumière — Estética Facial
   Guia de estilo: bege claro, rosa pastel, dourado suave
   Playfair Display (títulos) + Lato (texto)
   ========================================================= */

:root {
  --white: #ffffff;
  --beige: #faf6ef;
  --beige-deep: #f3ecdf;
  --pink: #f2dce0;
  --pink-soft: #f7e8eb;
  --pink-deep: #dfb6be;
  --gold: #c9a87c;
  --gold-soft: #e2cdab;
  --gold-deep: #a9854f;
  --charcoal: #3d3a36;
  --gray: #9b9894;
  --line: rgba(201, 168, 124, 0.28);
  --shadow: 0 18px 45px rgba(61, 58, 54, 0.09);
  --shadow-gold: 0 14px 38px rgba(201, 168, 124, 0.32);
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Lato", "Open Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1140px, 92%); margin: 0 auto; }

section[id] { scroll-margin-top: 78px; }

h1, h2, h3 { font-family: var(--font-title); font-weight: 600; line-height: 1.2; }
h1 em, h2 em { font-style: italic; color: var(--gold-deep); }

/* ---------- Seções ---------- */
.section { padding: 104px 0; }
.section--beige { background: var(--beige); }
.section--dark { background: linear-gradient(160deg, #4a443e 0%, #3d3a36 100%); color: var(--beige); }

.section-head { text-align: center; margin-bottom: 58px; }
.section-head__tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head__title { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--charcoal); }
.section--dark .section-head__title { color: var(--beige); }
.section--dark .section-head__tag { color: var(--gold-soft); }
.section-head__rule {
  width: 64px; height: 1px; margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(61, 58, 54, 0.07);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--beige); }
.navbar.is-scrolled .brand { color: var(--charcoal); }
.brand__mark { width: 40px; height: 40px; }
.brand__name { font-family: var(--font-title); font-size: 1.5rem; letter-spacing: 0.04em; }

.nav { display: flex; gap: 26px; }
.nav__link {
  position: relative;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: rgba(250, 246, 239, 0.9);
  transition: color 0.3s;
}
.navbar.is-scrolled .nav__link { color: var(--charcoal); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--gold-soft); }
.navbar.is-scrolled .nav__link:hover { color: var(--gold-deep); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; position: relative; z-index: 120; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto;
  background: var(--beige); transition: all 0.3s var(--ease);
}
.navbar.is-scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f7e8eb 0%, #faf6ef 55%, #f3ecdf 100%);
}
.hero__parallax { position: absolute; inset: -12%; z-index: 0; will-change: transform; }
.hero__face {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
  will-change: transform;
}
.hero__halo {
  position: absolute; top: 12%; right: 6%;
  width: 44vw; height: 44vw; max-width: 560px; max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 220, 224, 0.85) 0%, rgba(242, 220, 224, 0) 68%);
  filter: blur(6px);
  animation: haloFloat 9s ease-in-out infinite;
}
@keyframes haloFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.05); }
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 620px; padding-top: 90px;
}
.hero__eyebrow {
  font-size: 0.82rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero__subtitle { font-size: 1.12rem; color: var(--gray); margin-bottom: 36px; max-width: 480px; }
.hero__scroll {
  margin-top: 64px; display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gray);
}
.hero__scroll-line {
  width: 1px; height: 46px; display: inline-block; position: relative; overflow: hidden;
  background: var(--line);
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--gold); animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }

/* ---------- Botões ---------- */
.btn {
  display: inline-block; border: 0; border-radius: 60px;
  padding: 16px 38px; font-size: 0.92rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s;
}
.btn--glow { box-shadow: 0 0 0 rgba(201, 168, 124, 0); }
.btn--glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(233, 195, 150, 0.75), var(--shadow-gold);
  filter: brightness(1.05);
}
.btn--confirm { min-width: 280px; text-align: center; transition: all 0.45s var(--ease); }
.btn--confirm:hover { transform: scale(1.05); filter: brightness(1.07); box-shadow: var(--shadow-gold); }
.btn--confirm:active { transform: scale(0.98); }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

.slide-in { opacity: 0; transform: translateX(60px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.slide-in.is-visible { opacity: 1; transform: translateX(0); }

.flip-in { opacity: 0; transform: translateY(40px) scale(0.96); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: calc(var(--i, 0) * 120ms); }
.flip-in.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Sobre ---------- */
.sobre { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.sobre__text p { margin-bottom: 20px; font-size: 1.05rem; color: var(--gray); }
.sobre__text p:first-child { font-size: 1.16rem; color: var(--charcoal); }

.sobre__values { display: grid; gap: 18px; }
.value-card {
  display: grid; grid-template-columns: auto 1fr; column-gap: 20px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card__icon {
  grid-row: span 2;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-deep);
  background: linear-gradient(135deg, var(--pink-soft), var(--beige-deep));
}
.value-card__icon svg { width: 30px; height: 30px; fill: currentColor; }
.value-card h3 { font-size: 1.14rem; margin-bottom: 2px; }
.value-card p { font-size: 0.9rem; color: var(--gray); }

.pulse { animation: softPulse 3.2s ease-in-out infinite; }
@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

/* ---------- Tratamentos ---------- */
.treatments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 84px; }
.treatment-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 10px 30px rgba(61, 58, 54, 0.05);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.treatment-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-gold); }
.treatment-card__media { overflow: hidden; aspect-ratio: 4 / 3; }
.treatment-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.treatment-card:hover .treatment-card__media img { transform: scale(1.09); }
.treatment-card__body { padding: 24px 26px 28px; position: relative; z-index: 2; background: var(--white); border-radius: 0 0 20px 20px; }
.treatment-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.treatment-card p { font-size: 0.94rem; color: var(--gray); margin-bottom: 16px; }
.treatment-card__more {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.treatment-card__more::after { content: "→"; transition: transform 0.3s var(--ease); }
.treatment-card:hover .treatment-card__more::after { transform: translateX(5px); }

/* Antes & depois */
.before-after { text-align: center; }
.before-after__title { font-size: 1.6rem; margin-bottom: 6px; }
.before-after__hint { color: var(--gray); font-size: 0.92rem; margin-bottom: 30px; }
.ba { max-width: 640px; margin: 0 auto; cursor: ew-resize; }
.ba__wrapper { position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.ba__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; }
.ba__layer { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__layer .ba__image { width: 100%; max-width: none; }
.ba__label {
  position: absolute; top: 16px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--white); padding: 6px 14px; border-radius: 40px; pointer-events: none;
  background: rgba(61, 58, 54, 0.45); backdrop-filter: blur(4px);
}
.ba__label--left { left: 16px; }
.ba__label--right { right: 16px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 46px; display: grid; place-items: center; z-index: 3; color: var(--white);
  outline: none; cursor: ew-resize;
}
.ba__handle::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: rgba(255, 255, 255, 0.85);
}
.ba__handle svg { width: 30px; height: 30px; background: var(--gold); border-radius: 50%; padding: 4px; box-shadow: 0 4px 14px rgba(0,0,0,0.25); z-index: 2; }
.ba__handle:focus-visible::before { box-shadow: 0 0 0 4px rgba(233, 195, 150, 0.6); }

/* ---------- Equipe ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { perspective: 1200px; }
.team-card__inner {
  position: relative; width: 100%; aspect-ratio: 3 / 4;
  transform-style: preserve-3d; transition: transform 0.8s var(--ease);
}
.team-card:hover .team-card__inner { transform: rotateY(180deg); }
.team-card__front, .team-card__back {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 26px; text-align: center;
}
.team-card__front {
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(61, 58, 54, 0.08);
}
.team-card__front img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-card__front h3, .team-card__front span {
  position: relative; z-index: 2; color: var(--white);
  text-shadow: 0 2px 12px rgba(61, 58, 54, 0.55);
}
.team-card__front h3 { font-size: 1.18rem; }
.team-card__front span { font-size: 0.78rem; letter-spacing: 0.1em; opacity: 0.92; }
.team-card__front::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,58,54,0.55), transparent 55%);
}
.team-card__back {
  transform: rotateY(180deg);
  background: linear-gradient(150deg, var(--gold-deep), var(--gold));
  color: var(--white); justify-content: center; gap: 12px;
}
.team-card__back h3 { font-size: 1.16rem; margin-bottom: 6px; }
.team-card__back p { font-size: 0.86rem; line-height: 1.6; opacity: 0.95; }

/* ---------- Depoimentos ---------- */
.testimonials { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.testimonials__slider { min-height: 300px; display: grid; place-items: center; }
.testimonial { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.testimonial__avatar {
  width: 92px; height: 92px; border-radius: 50%; overflow: hidden;
  padding: 4px;
  background: linear-gradient(135deg, var(--gold-soft), var(--pink-deep), var(--gold));
  box-shadow: 0 0 24px rgba(233, 195, 150, 0.45);
}
.testimonial__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.testimonial__quote {
  font-family: var(--font-title); font-size: clamp(1.2rem, 3vw, 1.6rem); font-style: italic;
  color: var(--beige); min-height: 4.6em; max-width: 640px;
}
.testimonial__caret {
  display: inline-block; width: 2px; height: 1.1em; margin-left: 4px; vertical-align: -0.18em;
  background: var(--gold); animation: caretBlink 0.9s step-end infinite;
}
@keyframes caretBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.testimonial__author { font-style: normal; font-weight: 700; color: var(--gold-soft); letter-spacing: 0.06em; }
.testimonial__role { font-size: 0.82rem; color: rgba(250, 246, 239, 0.6); letter-spacing: 0.1em; text-transform: uppercase; }

.testimonials__dots { display: flex; justify-content: center; gap: 10px; margin: 30px 0 18px; }
.testimonials__dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(250, 246, 239, 0.28); transition: all 0.3s var(--ease);
}
.testimonials__dot.is-active { background: var(--gold); width: 26px; border-radius: 6px; }
.testimonials__nav { display: flex; justify-content: center; gap: 14px; }
.testimonials__btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, 0.35); background: transparent; color: var(--beige);
  font-size: 1.4rem; line-height: 1; transition: all 0.3s var(--ease);
}
.testimonials__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ---------- Agendamento ---------- */
.booking {
  max-width: 820px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: 44px 48px; box-shadow: var(--shadow);
}
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 34px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--charcoal); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--charcoal);
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  background: var(--beige); outline: none;
  transition: border-color 0.35s, box-shadow 0.35s, background 0.35s, transform 0.35s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #c4beb4; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(233, 195, 150, 0.28), var(--shadow-gold);
  transform: translateY(-2px);
}
.field input.is-filled, .field textarea.is-filled { border-color: var(--pink-deep); background: var(--pink-soft); }
.booking > .btn { display: block; margin: 0 auto; }
.booking__status { text-align: center; margin-top: 20px; font-size: 0.95rem; color: var(--gold-deep); font-weight: 700; min-height: 1.4em; }
.booking__status.is-error { color: #c05b5b; }

/* ---------- Blog ---------- */
.blog { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.blog-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.blog-card__media { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.1); }
.blog-card__category {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--white); background: rgba(201, 168, 124, 0.9);
  padding: 5px 12px; border-radius: 40px;
}
.blog-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.06rem; margin-bottom: 12px; }
.blog-card__summary {
  font-size: 0.88rem; color: var(--gray);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.5s var(--ease), margin 0.5s var(--ease);
}
.blog-card:hover .blog-card__summary { max-height: 140px; opacity: 1; margin-bottom: 14px; }
.blog-card__more {
  margin-top: auto; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px;
}
.blog-card__more::after { content: "→"; transition: transform 0.3s var(--ease); }
.blog-card:hover .blog-card__more::after { transform: translateX(5px); }

/* ---------- Contato ---------- */
.contact { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.contact__map {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 3;
  transition: transform 0.6s var(--ease);
}
.contact__map:hover { transform: scale(1.035); }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85); }
.contact__map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  width: 22px; height: 22px; border-radius: 50% 50% 50% 0; transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--gold-deep); box-shadow: 0 0 0 6px rgba(201, 168, 124, 0.35);
  animation: pinBounce 2s ease-in-out infinite; pointer-events: none;
}
.contact__map-pin::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--white); }
@keyframes pinBounce { 0%, 100% { margin-top: 0; } 50% { margin-top: -10px; } }

.contact__info { display: grid; gap: 22px; }
.contact__item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px 24px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.contact__item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact__icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-deep);
  background: linear-gradient(135deg, var(--pink-soft), var(--beige-deep));
}
.contact__icon svg { width: 26px; height: 26px; fill: currentColor; }
.contact__icon--wa { color: #2c9e62; background: linear-gradient(135deg, #e2f3e8, #d2e9db); }
.contact__item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.contact__item p { font-size: 0.94rem; color: var(--gray); }
.contact__item a:hover { color: var(--gold-deep); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(160deg, #3d3a36, #2e2b28); color: rgba(250, 246, 239, 0.75); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
.footer__brand .brand { color: var(--beige); margin-bottom: 16px; }
.footer__brand p { font-size: 0.92rem; max-width: 260px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; font-weight: 700; }
.footer__col a, .footer__col p { font-size: 0.9rem; transition: color 0.3s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { border-top: 1px solid rgba(250, 246, 239, 0.12); }
.footer__bottom .container { padding: 22px 0; }
.footer__bottom span { font-size: 0.82rem; color: rgba(250, 246, 239, 0.5); }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(14px);
    padding: 40px; box-shadow: -18px 0 50px rgba(61, 58, 54, 0.15);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { color: var(--charcoal) !important; font-size: 0.98rem; }
  .nav-toggle { display: block; }
  .treatments { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .blog { grid-template-columns: repeat(2, 1fr); }
  .sobre, .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .treatments, .team, .blog { grid-template-columns: 1fr; }
  .booking { padding: 30px 24px; }
  .booking__grid { grid-template-columns: 1fr; }
  .btn--confirm { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- Preferência por movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .fade-up, .slide-in, .flip-in { opacity: 1; transform: none; }
}
