/* ═══════════════════════════════════════════
   LUMIÈRE ESTÉTICA — style.css
   Editorial Luxury · Rose · Gold · Porcelain
═══════════════════════════════════════════ */

:root {
  --porcelain:  #faf7f4;
  --cream:      #f2ece3;
  --rose:       #e8c4c0;
  --rose-deep:  #c9908a;
  --rose-dark:  #a06060;
  --gold:       #b8975a;
  --gold-light: #d4b57a;
  --gold-pale:  #ede0c8;
  --noir:       #1a1510;
  --noir-soft:  #2e2620;
  --taupe:      #8a7a70;
  --taupe-light:#c5b8b0;

  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans:  'Josefin Sans', sans-serif;
  --font-script:'Great Vibes', cursive;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--porcelain);
  color: var(--noir);
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--rose); color: var(--noir); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.great-vibes { font-family: var(--font-script); }

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}

/* ════════ NAV ════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 1.5rem 0;
}

#navbar.scrolled {
  background: rgba(250, 247, 244, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(184,151,90,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--noir);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 300;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
}

.nav-link.nav-cta:hover {
  background: var(--gold);
  color: var(--porcelain);
}

.nav-link.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--noir);
  transition: all 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--porcelain);
  border-top: 1px solid var(--gold-pale);
  transition: max-height 0.4s ease;
}

.mobile-nav.open { max-height: 300px; }

.mobile-nav ul { list-style: none; padding: 1rem 2rem 1.5rem; }

.mob-link {
  display: block;
  padding: 0.8rem 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none;
  font-weight: 300;
  border-bottom: 1px solid var(--gold-pale);
  transition: color 0.3s;
}

.mob-link:hover { color: var(--gold); }

/* ════════ HERO ════════ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--porcelain);
  overflow: hidden;
  padding-top: 5rem;
}

/* Grain texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--noir);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--rose-dark);
}

.hero-body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
  max-width: 380px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat-n {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1;
}

.stat-l {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--taupe-light);
}

/* Hero right */
.hero-right { position: relative; }

.hero-img-wrap { position: relative; }

.hero-img-bg {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 85%;
  height: 85%;
  background: var(--gold-pale);
  border-radius: 4px;
  z-index: 0;
}

.hero-img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--rose) 0%, var(--cream) 60%, var(--gold-pale) 100%);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,21,16,0.15);
}

.img-overlay-text {
  padding: 1.5rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(26,21,16,0.5), transparent);
}

.img-overlay-text .great-vibes {
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
}

.hero-float-tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  background: white;
  border: 1px solid var(--gold-pale);
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--taupe);
  box-shadow: 0 8px 30px rgba(26,21,16,0.1);
  white-space: nowrap;
}

.hero-float-tag i { color: var(--gold); }

.deco-number {
  position: absolute;
  top: -20px;
  right: -15px;
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: var(--rose); 
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--noir);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

/* ════════ MARQUEE ════════ */
.marquee-wrap {
  background: var(--noir);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,151,90,0.3);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 181, 122, 0.7);
  font-weight: 300;
}

.marquee-track .dot { color: var(--gold) !important; font-size: 0.5rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════ BUTTONS ════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--noir);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  border: 1px solid var(--noir);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--noir); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 0;
  color: var(--taupe);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s, gap 0.3s;
}

.btn-ghost:hover { color: var(--noir); gap: 0.8rem; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 300;
  border: 1px solid rgba(212,181,122,0.4);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  border-color: var(--gold-light);
  background: rgba(212,181,122,0.08);
}

/* ════════ TRATAMENTOS ════════ */
#tratamentos {
  background: var(--cream);
  padding: 8rem 0;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--noir);
}

.section-title em {
  font-style: italic;
  color: var(--rose-dark);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--taupe-light);
}

.treatment-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.4s ease;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.treatment-card:hover { background: white; }
.treatment-card:hover::before { width: 100%; }

.featured-card {
  background: var(--noir);
}

.featured-card h3,
.featured-card p,
.featured-card .t-number { color: white !important; }

.featured-card .t-icon { color: var(--gold) !important; }
.featured-card .t-link { color: var(--gold-light) !important; }
.featured-card:hover { background: var(--noir-soft); }

.t-number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--taupe-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.t-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.treatment-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--noir);
  margin-bottom: 1rem;
}

.treatment-card p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.t-link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  transition: gap 0.3s ease;
}

.t-link:hover { gap: 0.7rem; }

.t-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,90,0.4);
  padding: 0.3rem 0.7rem;
  font-weight: 300;
}

/* ════════ SOBRE ════════ */
#sobre {
  padding: 8rem 0;
  background: var(--porcelain);
  overflow: hidden;
}

.sobre-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-img-col { position: relative; }

.sobre-img-frame { position: relative; display: inline-block; width: 100%; }

.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--gold-pale) 0%, var(--rose) 50%, var(--cream) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.sobre-img-deco {
  padding: 2rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(26,21,16,0.5), transparent);
}

.sobre-img-deco .great-vibes {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
}

.sobre-img-border {
  position: absolute;
  top: 25px;
  left: 25px;
  right: -25px;
  bottom: -25px;
  border: 1px solid var(--gold-pale);
  z-index: -1;
}

.sobre-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border: 1px solid var(--gold-pale);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(26,21,16,0.1);
  z-index: 2;
}

.sobre-float i { font-size: 1.5rem; color: var(--gold); }
.sobre-float strong { display: block; font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600; color: var(--noir); }
.sobre-float span { font-family: var(--font-sans); font-size: 0.65rem; color: var(--taupe); font-weight: 300; letter-spacing: 0.05em; }

.sobre-body {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--taupe);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.sobre-body strong { color: var(--noir); font-weight: 600; }

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--taupe);
  border: 1px solid var(--taupe-light);
  padding: 0.4rem 0.9rem;
  font-weight: 300;
}

.tag i { color: var(--gold); font-size: 0.6rem; }

/* ════════ DEPOIMENTOS ════════ */
#resultados {
  padding: 8rem 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid var(--gold-pale);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26,21,16,0.08);
}

.featured-test {
  background: var(--noir);
  border-color: transparent;
}

.featured-test p,
.featured-test .test-author strong { color: white !important; }
.featured-test .test-author span { color: var(--gold-light) !important; }
.featured-test .stars { color: var(--gold) !important; }

.stars {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.2rem;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--taupe);
  margin-bottom: 1.8rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.test-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--noir);
}

.test-author span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ════════ CTA FINAL ════════ */
#contato {
  background: var(--noir);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#contato::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184,151,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-deco-text {
  font-family: var(--font-script);
  font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(184,151,90,0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: white;
  margin: 1.5rem 0;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-body {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-info span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-info i { color: var(--gold); font-size: 0.65rem; }

/* ════════ FOOTER ════════ */
footer {
  background: var(--noir-soft);
  border-top: 1px solid rgba(184,151,90,0.15);
  padding: 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo { display: flex; flex-direction: column; line-height: 1; }
.footer-logo .logo-script { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.footer-social { display: flex; gap: 1rem; }

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184,151,90,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ════════ SCROLL REVEAL ════════ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal      { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right{ transform: translateX(30px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-col { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 1.5rem 4rem;
  }

  .hero-right { order: -1; }

  .hero-diagonal { height: 50px; }

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

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

  .cta-info { gap: 1rem; }

  .footer-inner { flex-direction: column; text-align: center; }

  .sobre-float { right: 0; bottom: -15px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ════════ REDUCED MOTION ════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
