/* ============================================================
   ÉCLAT — Estética & Bem-estar
   Quiet luxury · champagne / rosé / areia · Cormorant × Jost
   ============================================================ */

:root {
  --ivory: #FBF8F3;
  --porcelain: #F4EEE6;
  --sand: #EAE0D1;
  --champagne: #D8C3A5;
  --rose: #C69C8D;
  --gold: #A88B5C;
  --gold-deep: #8F7347;
  --ink: #262220;
  --ink-2: #4A443F;
  --stone: #8B8178;
  --white: #FFFFFF;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 60px rgba(38, 34, 32, 0.08);
  --shadow-lift: 0 30px 80px rgba(38, 34, 32, 0.14);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink-2);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.005em;
  margin-bottom: 1.4rem;
}

.h2 em, .hero-title em, .cta-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(105deg, var(--gold-deep), var(--rose) 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.06rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 54ch;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.5s var(--ease);
  will-change: transform;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold) 0%, #C2A876 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--white);
  box-shadow: 0 12px 34px rgba(168, 139, 92, 0.35);
}
.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 18px 44px rgba(168, 139, 92, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline {
  color: var(--ink);
  border: 1px solid rgba(38, 34, 32, 0.3);
  padding: 12px 28px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn-lg { padding: 20px 52px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ---------- Glass ---------- */

.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
}

/* ---------- Scroll progress / cursor ---------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--champagne), var(--gold));
  z-index: 1001;
}

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1002;
  opacity: 0;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(168, 139, 92, 0.55);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease);
}
body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 64px; height: 64px;
  background: rgba(216, 195, 165, 0.14);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease),
              box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(251, 248, 243, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(168, 139, 92, 0.14), 0 10px 40px rgba(38, 34, 32, 0.06);
}

.nav-inner {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-right: auto;
}
.nav-logo-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.5s var(--ease);
}
.nav.scrolled .nav-logo-text, .nav.menu-open .nav-logo-text { color: var(--ink); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-menu > a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav-menu > a { color: var(--ink-2); }
.nav-menu > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-menu > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-menu > a:hover { color: var(--gold); }

.nav-cta {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.nav-cta:hover { border-color: var(--gold); color: var(--champagne); }
.nav.scrolled .nav-cta { color: var(--ink); border-color: rgba(38, 34, 32, 0.3); }
.nav.scrolled .nav-cta:hover { color: var(--gold-deep); border-color: var(--gold); }

.nav-cta-mobile { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease);
}
.nav.scrolled .nav-burger span, .nav.menu-open .nav-burger span { background: var(--ink); }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(4.2px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { transform: translateY(-4.2px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
}
.hero-poster, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video { opacity: 0; transition: opacity 1.6s ease; }
.hero-video.playing { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(24, 20, 17, 0.72) 0%,
    rgba(24, 20, 17, 0.45) 45%,
    rgba(24, 20, 17, 0.2) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 68% 40%, transparent 40%, rgba(15, 12, 10, 0.55) 100%),
    linear-gradient(to top, rgba(15, 12, 10, 0.6), transparent 30%);
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particles i {
  position: absolute;
  bottom: -10px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(216, 195, 165, 0.7);
  filter: blur(0.5px);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-105vh) translateX(40px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 100%;
}

.hero-eyebrow {
  color: var(--champagne);
}
.hero-eyebrow::before { background: var(--champagne); }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.7rem, 6.4vw, 5.4rem);
  line-height: 1.06;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.8rem;
  letter-spacing: 0.005em;
}
.hero-title em,
.hero-title em .word,
.hero-title em .char {
  background: linear-gradient(105deg, var(--champagne), #EFDCBB 50%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .char { will-change: transform, filter, opacity; }

.hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 46ch;
  margin-bottom: 2.8rem;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-label {
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.hero-scroll-line span {
  display: block;
  width: 100%; height: 40%;
  background: var(--champagne);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(250%); }
  100% { transform: translateY(250%); }
}

/* ---------- Sections base ---------- */

.section { padding: clamp(90px, 12vw, 160px) 0; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .lead { margin-top: 0.4rem; }

/* ---------- Sobre ---------- */

.about { background: var(--ivory); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.about-media { position: relative; }
.about-img-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.about-img-frame img {
  width: 100%; height: 115%;
  object-fit: cover;
  will-change: transform;
}
.about-media::before {
  content: "";
  position: absolute;
  top: 26px; left: -26px;
  width: 100%; height: 100%;
  border: 1px solid rgba(168, 139, 92, 0.35);
  border-radius: var(--radius);
  z-index: -1;
}

.about-badge {
  position: absolute;
  right: -18px; bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-radius: var(--radius);
}
.about-badge-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.5;
}

.about-stats {
  display: flex;
  gap: clamp(28px, 4vw, 60px);
  margin: 2.6rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(168, 139, 92, 0.2);
  border-bottom: 1px solid rgba(168, 139, 92, 0.2);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.about-cards {
  display: grid;
  gap: 14px;
}
.about-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid rgba(168, 139, 92, 0.14);
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.about-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(168, 139, 92, 0.4);
}
.about-card svg {
  grid-row: 1 / 3;
  width: 30px; height: 30px;
  color: var(--gold);
  margin-top: 4px;
}
.about-card h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.about-card p { font-size: 0.9rem; color: var(--stone); }

/* ---------- Tratamentos ---------- */

.treatments { background: var(--porcelain); }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(168, 139, 92, 0.12);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  position: relative;
}
.treatment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(168, 139, 92, 0), 0 0 60px rgba(216, 195, 165, 0);
  transition: box-shadow 0.6s var(--ease);
  pointer-events: none;
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.treatment-card:hover::after {
  box-shadow: 0 0 0 1px rgba(168, 139, 92, 0.35), 0 0 70px rgba(216, 195, 165, 0.45);
}

.treatment-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.treatment-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.treatment-card:hover .treatment-img img {
  transform: scale(1.09);
  filter: saturate(1.08) brightness(1.03);
}

.treatment-body { padding: 26px 28px 30px; }
.treatment-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.treatment-body p {
  font-size: 0.92rem;
  color: var(--stone);
  margin-bottom: 1.1rem;
}
.treatment-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.treatment-link i {
  font-style: normal;
  transition: transform 0.4s var(--ease);
}
.treatment-card:hover .treatment-link i { transform: translateX(6px); }

/* ---------- Antes e Depois ---------- */

.results { background: var(--ivory); }

.compare {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  user-select: none;
  touch-action: pan-y;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare-before img { filter: saturate(0.55) brightness(0.9) contrast(0.94); }
.compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}

.compare-tag {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(24, 20, 17, 0.45);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius);
}
.compare-tag-after {
  left: auto; right: 22px;
  background: rgba(168, 139, 92, 0.75);
}

.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.compare-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1.5px;
  margin-left: -0.75px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.compare-handle-grip {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(24, 20, 17, 0.3);
  transition: transform 0.35s var(--ease);
}
.compare-handle:hover .compare-handle-grip,
.compare-handle:focus-visible .compare-handle-grip { transform: scale(1.1); }
.compare-handle-grip svg { width: 20px; height: 20px; color: var(--gold-deep); }

.results-note {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--stone);
}

/* ---------- Benefícios ---------- */

.benefits { background: var(--porcelain); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(168, 139, 92, 0.12);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  text-align: center;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(168, 139, 92, 0.35);
}

.benefit-icon {
  width: 66px; height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(168, 139, 92, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.55s var(--ease), background 0.55s var(--ease), color 0.55s var(--ease);
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--champagne), var(--sand));
  color: var(--gold-deep);
  transform: rotate(-6deg) scale(1.06);
}
.benefit-icon svg { width: 28px; height: 28px; }

.benefit-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.benefit-card p { font-size: 0.88rem; color: var(--stone); }

/* ---------- Depoimentos ---------- */

.testimonials {
  background:
    radial-gradient(ellipse 900px 500px at 85% 0%, rgba(216, 195, 165, 0.28), transparent),
    var(--ivory);
  overflow: hidden;
}

.testi-viewport {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 26px;
  transition: transform 0.9s var(--ease);
  padding: 10px 4px 26px;
}

.testi-card {
  flex: 0 0 calc((100% - 52px) / 3);
  border-radius: var(--radius);
  padding: 36px 34px 30px;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}
.testi-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 1.6rem;
}
.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-card figcaption img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--champagne);
}
.testi-card figcaption strong {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.testi-card figcaption span {
  font-size: 0.76rem;
  color: var(--stone);
  letter-spacing: 0.08em;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.testi-dots button {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: rgba(168, 139, 92, 0.25);
  transition: background 0.4s var(--ease), width 0.4s var(--ease);
}
.testi-dots button.active { background: var(--gold); width: 40px; }

/* ---------- Equipe ---------- */

.team { background: var(--porcelain); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card { text-align: left; }
.team-img {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
  position: relative;
}
.team-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 34, 32, 0.25), transparent 45%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.team-card:hover .team-img img {
  transform: scale(1.07);
  filter: saturate(1.05);
}
.team-card:hover .team-img::after { opacity: 1; }

.team-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
}
.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 4px 0 10px;
}
.team-bio { font-size: 0.9rem; color: var(--stone); max-width: 34ch; }

/* ---------- Galeria ---------- */

.gallery { background: var(--ivory); }

.gallery-grid {
  columns: 3;
  column-gap: 22px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  position: relative;
}
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(38, 34, 32, 0.34);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1s var(--ease);
}
.gallery-item.is-tall { aspect-ratio: 3 / 4; }
.gallery-item.is-square { aspect-ratio: 1 / 1; }
.gallery-item.is-wide { aspect-ratio: 16 / 10; }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(20, 17, 14, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  transition: transform 0.5s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 26px; right: 34px;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.lightbox-close:hover { color: var(--champagne); transform: rotate(90deg); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  padding: clamp(110px, 15vw, 200px) 0;
  overflow: hidden;
  text-align: center;
}
.cta-media { position: absolute; inset: 0; }
.cta-poster, .cta-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-video { opacity: 0; transition: opacity 1.6s ease; }
.cta-video.playing { opacity: 1; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(24, 20, 17, 0.55), rgba(24, 20, 17, 0.78));
}

.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.cta-title em {
  background: linear-gradient(105deg, var(--champagne), #EFDCBB 50%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.6rem;
  font-size: 1.02rem;
}

/* ---------- Contato ---------- */

.contact { background: var(--porcelain); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 20px;
  margin: 2.2rem 0;
}
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-ico {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(168, 139, 92, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-ico svg { width: 20px; height: 20px; }
.contact-list strong {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-list span { font-size: 0.94rem; color: var(--stone); }

.contact-map {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  height: 260px;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.85) sepia(0.12) contrast(0.95);
}

.contact-form {
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
  position: sticky;
  top: 110px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--ink);
}
.contact-form-sub {
  font-size: 0.86rem;
  color: var(--stone);
  margin: 4px 0 26px;
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label > span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.contact-form label > span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--stone);
  font-weight: 300;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(168, 139, 92, 0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
  appearance: none;
}
.contact-form textarea { resize: vertical; }
.contact-form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A88B5C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(168, 139, 92, 0.12);
}
.contact-form ::placeholder { color: #B8AFa4; }

.contact-form .btn { margin-top: 8px; }
.contact-form-ok {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
}

/* ---------- Footer ---------- */

.footer {
  background: #211D1A;
  color: rgba(251, 248, 243, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 40px;
  padding: clamp(60px, 8vw, 96px) 0 50px;
}

.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--champagne);
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }

.footer-nav, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer strong {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}
.footer-nav a, .footer-contact a {
  font-size: 0.9rem;
  transition: color 0.35s, transform 0.35s var(--ease);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--champagne); }
.footer-contact span { font-size: 0.9rem; line-height: 1.8; }

.footer-social-row { display: flex; gap: 12px; }
.footer-social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(216, 195, 165, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s var(--ease);
}
.footer-social-row a:hover {
  border-color: var(--champagne);
  background: rgba(216, 195, 165, 0.12);
  transform: translateY(-3px);
}
.footer-social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(216, 195, 165, 0.14);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(251, 248, 243, 0.45);
}

/* ---------- Reveal base state (JS adds motion) ---------- */

html.js [data-reveal],
html.js [data-reveal-group] > * {
  opacity: 0;
}
html.js.no-motion [data-reveal],
html.js.no-motion [data-reveal-group] > * {
  opacity: 1;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { flex: 0 0 calc((100% - 26px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100svh;
    width: min(360px, 86vw);
    background: rgba(251, 248, 243, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 100px 44px 60px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.6s var(--ease), visibility 0s 0.6s;
    box-shadow: -30px 0 80px rgba(38, 34, 32, 0.12);
  }
  .nav.menu-open .nav-menu {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.6s var(--ease), visibility 0s 0s;
  }
  .nav-menu > a {
    color: var(--ink);
    font-size: 1rem;
    padding: 12px 0;
  }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 22px; }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .about-badge { right: 12px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { position: static; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card:last-child { grid-column: 1 / -1; max-width: 50%; }

  .gallery-grid { columns: 2; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 40px); }

  .hero-content { padding-top: 110px; }
  .hero-ctas .btn { width: 100%; }
  .hero-scroll { display: none; }

  .treatments-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card:last-child { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }

  .about-stats { flex-wrap: wrap; gap: 22px; }
  .about-badge { padding: 14px 18px; bottom: 20px; }
  .about-badge-num { font-size: 2rem; }

  .compare { aspect-ratio: 4 / 5; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }
  html { scroll-behavior: auto; }
  .hero-video, .cta-video { display: none; }
  .hero-particles { display: none; }
}
