/* === VARIABLES === */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --gold-soft: rgba(201, 168, 76, 0.08);
  --dark: #06060D;
  --dark-2: #0E0E16;
  --dark-3: #141420;
  --dark-4: #1C1C2C;
  --text: #F0EDE8;
  --text-muted: #8A8899;
  --border: rgba(201, 168, 76, 0.15);
  --border-strong: rgba(201, 168, 76, 0.3);
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* === PARTICLES CANVAS === */
#particlesCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* === ORNAMENTS === */
.ornament-top {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-top::before {
  content: '✦';
  position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  color: var(--gold);
  font-size: 12px;
}
.ornament-top.light { background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; width: 100%; z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease);
  background: linear-gradient(to bottom, rgba(6,6,13,0.85) 0%, transparent 100%);
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(6,6,13,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.nav-inner {
  width: 92%;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.nav-logo .logo-img {
  display: none;
}

.navbar.scrolled .nav-logo .logo-text {
  font-size: 1.4rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  display: block;
  transition: all 0.4s var(--ease);
}
.nav-links { display: flex; gap: 2.8rem; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.6);
  transition: all 0.35s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.btn-cta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.btn-cta:hover { color: var(--dark); border-color: var(--gold-light); }
.btn-cta:hover::before { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.22) saturate(0.4);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(6,6,13,0.85) 85%);
}
.hero-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    transparent 35%,
    rgba(201,168,76,0.04) 40%,
    rgba(201,168,76,0.01) 42%,
    transparent 50%
  );
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.hero-frame-gold {
  position: absolute;
  inset: 3rem;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 1;
}
.hero-frame-gold::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 12rem 0 6rem;
}
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
  animation: heroLogoFloat 4s ease-in-out infinite;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo {
  height: 140px;
  width: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.45));
  animation: heroLogoGlow 3s ease-in-out infinite;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo {
  height: 140px;
  width: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.45));
  animation: heroLogoGlow 3s ease-in-out infinite;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes heroLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.4)); }
  50% { filter: drop-shadow(0 0 60px rgba(201,168,76,0.7)); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  display: inline-block;
  padding: 1.15rem 3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-gold:hover::after { opacity: 1; }
.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 1.15rem 3rem;
  border: 1px solid rgba(240,237,232,0.25);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 30px rgba(201,168,76,0.1);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 2s 1s ease-out both;
}
.hero-scroll-hint span {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { height: 30px; opacity: 0.3; }
  50% { height: 50px; opacity: 1; }
}
.hero-scroll-hint p {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* === SOBRE === */
.sobre {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
  background: var(--dark-2);
}
.sobre-grid {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.sobre-image-col { position: relative; }
.sobre-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.sobre-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.sobre-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  z-index: 0;
}
.sobre-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, var(--gold-pale), transparent 70%);
  z-index: -1;
}
.sobre-text-col { padding-right: 2rem; }

.section-kicker {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.gold-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}
.gold-line-center {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 2rem;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.body-text.muted { color: rgba(138,136,153,0.7); }

.tagline-gold {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-light);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.tagline-gold em {
  font-style: normal;
  color: var(--white);
  font-weight: 500;
}

.tagline-gold {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-light);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.tagline-gold em {
  font-style: normal;
  color: var(--white);
  font-weight: 500;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* === TRATAMENTOS ESTÉTICA === */
.treatments-section {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
  background: var(--dark);
}
.treatments-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.treatments-header {
  text-align: center;
  margin-bottom: 5rem;
}
.treatments-header .gold-line {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 2rem;
}
.treatments-header .body-text {
  max-width: 560px;
  margin: 0 auto;
}
.treatments-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.treatments-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.t-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.t-item:first-child { border-top: 1px solid var(--border); }
.t-item::before {
  content: '';
  position: absolute;
  left: -10px; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
  border-radius: 0 2px 2px 0;
}
.t-item:hover::before, .t-item.active::before {
  transform: scaleY(1);
}
.t-item:hover {
  background: rgba(201,168,76,0.04);
  padding-left: 1rem;
}
.t-item.active {
  background: var(--gold-soft);
  padding-left: 1rem;
}

.t-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s;
  min-width: 32px;
}
.t-item:hover .t-num, .t-item.active .t-num { opacity: 1; }
.t-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  transition: color 0.3s;
}
.t-item:hover .t-info h3, .t-item.active .t-info h3 { color: var(--gold-light); }
.t-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.25rem;
}
.t-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  padding: 10px;
  color: var(--gold);
  transition: all 0.35s var(--ease);
}
.t-item:hover .t-arrow, .t-item.active .t-arrow {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.treatments-visual {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.t-visual-img {
  position: relative;
  overflow: hidden;
}
.t-visual-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
}
.t-visual-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.t-visual-desc {
  background: var(--dark-3);
  padding: 2rem;
  border: 1px solid var(--border);
}
.t-visual-desc p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.btn-gold-sm {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.btn-gold-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.35);
}

/* === TERAPIAS === */
.terapias-section {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
  background: var(--dark-2);
}
.terapias-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.terapias-header {
  text-align: center;
  margin-bottom: 5rem;
}
.terapias-header .gold-line {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 2rem;
}
.terapias-header .body-text {
  max-width: 560px;
  margin: 0 auto;
}

.terapias-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.bento-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease);
}
.bento-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 10px 40px rgba(201,168,76,0.08);
  transform: translateY(-4px);
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-medium { grid-column: span 2; }
.bento-small { min-height: 220px; }

.bento-card .bento-img {
  position: absolute;
  inset: 0;
}
.bento-card .bento-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: all 0.7s var(--ease);
  filter: brightness(0.5);
}
.bento-card:hover .bento-img img {
  transform: scale(1.07);
  filter: brightness(0.65);
}
.bento-overlay {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(6,6,13,0.9) 0%, rgba(6,6,13,0.3) 60%, transparent 100%);
}
.bento-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.bento-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.bento-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 360px;
}
.bento-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.3s;
}
.bento-link:hover { color: var(--gold-light); }

.bento-small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--dark-3);
}
.bento-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.8;
  transition: all 0.4s var(--ease);
}
.bento-small:hover .bento-icon {
  opacity: 1;
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.bento-small h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.bento-small p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* === GALERIA === */
.galeria-section {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
  background: var(--dark);
}
.galeria-header {
  text-align: center;
  margin-bottom: 5rem;
}

.galeria-masonry {
  columns: 3;
  column-gap: 1rem;
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}
.g-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
}
.g-masonry-item img {
  width: 100%;
  display: block;
  transition: all 0.7s var(--ease);
  filter: brightness(0.7);
}
.g-masonry-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}
.g-masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(6,6,13,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.g-masonry-item:hover .g-masonry-overlay { opacity: 1; }
.g-masonry-overlay span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  font-style: italic;
}

.g-large { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* === CONTACTO === */
.contacto-section {
  position: relative;
  z-index: 1;
  padding: 10rem 0;
  background: var(--dark-2);
}
.contacto-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.info-list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 18px; height: 18px;
  color: var(--gold);
}
.info-list strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.info-list span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.contacto-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 3rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
  font-style: italic;
}
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.35s var(--ease);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  color: var(--text-muted);
  cursor: pointer;
}
.form-field select option {
  background: var(--dark-3);
  color: var(--text);
}
::placeholder { color: rgba(138,136,153,0.4); }

.btn-gold.w100 {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* === FOOTER === */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px rgba(201,168,76,0.35));
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links strong {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: all 0.3s;
  position: relative;
  padding-left: 12px;
}
.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 18px;
}
.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* === SCROLL REVEAL === */
.reveal-init {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}
.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}
.bento-card.reveal-init { transition-delay: calc(var(--i, 0) * 0.1s); }
.bento-large.reveal-init { --i: 1; }
.bento-medium:nth-of-type(2).reveal-init { --i: 2; }
.bento-medium:nth-of-type(3).reveal-init { --i: 3; }
.bento-small:nth-of-type(4).reveal-init { --i: 4; }
.bento-small:nth-of-type(5).reveal-init { --i: 5; }
.bento-small:nth-of-type(6).reveal-init { --i: 6; }
.bento-small:nth-of-type(7).reveal-init { --i: 7; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .tagline-gold { font-size: 1.4rem; }
  .hero-logo { height: 110px; }
  .hero-title { font-size: 4rem; }
  .hero-frame-gold { inset: 1.5rem; }
  .section-title { font-size: 2.8rem; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-text-col { padding-right: 0; }
  .treatments-showcase { grid-template-columns: 1fr; }
  .treatments-visual { position: static; }
  .terapias-bento { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; }
  .bento-medium { grid-column: span 2; }
  .bento-small { grid-column: span 1; }
  .galeria-masonry { columns: 2; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .tagline-gold { font-size: 1.3rem; }
  .hero-logo { height: 80px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(6,6,13,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .btn-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 3rem; }
  .hero-frame-gold { display: none; }

  .section-title { font-size: 2.3rem; }
  .sobre-grid { gap: 2rem; }
  .sobre-img-frame { max-width: 100%; }

  .stats-row { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 60px; height: 1px; }

  .treatments-showcase { gap: 2rem; }
  .t-item { gap: 1.5rem; padding: 1.5rem 0; }
  .t-arrow { width: 32px; height: 32px; padding: 8px; }

  .terapias-bento { grid-template-columns: 1fr; gap: 0.75rem; }
  .bento-large, .bento-medium, .bento-small { grid-column: span 1; }
  .bento-large { grid-row: auto; min-height: 350px; }
  .bento-medium { min-height: 300px; }
  .bento-small { min-height: auto; }

  .galeria-masonry { columns: 1; }

  .form-duo { grid-template-columns: 1fr; }
  .contacto-form-wrap { padding: 2rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .tagline-gold { font-size: 1.1rem; padding-left: 1rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-body { padding: 10rem 0 4rem; }
  .section-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; padding: 1rem 1.5rem; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
  background: var(--gold-pale);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.3); }

/* === SELECTION === */
::selection {
  background: var(--gold);
  color: var(--dark);
}