﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BE YOUNG â€” EstÃ©tica Avanzada
   Paleta: Terracota #C97840 Â· Slate #7F9BA4 Â· Crema #FAF5EE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

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

:root {
  --terra:       #B8652E;
  --terra-light: #D4895A;
  --terra-pale:  #EDD5BE;
  --slate:       #6A8A94;
  --slate-light: #94B0B8;
  --cream:       #EEE6D8;
  --cream-dark:  #E4D8C8;
  --warm-white:  #F4EDE2;
  --dark:        #140C04;
  --warm-brown:  #3A2010;
  --mid:         #6A4C30;
  --text:        #2C1C0A;
  --text-light:  #6A5040;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 1px 0 rgba(42,28,10,0.08), 0 4px 24px rgba(42,28,10,0.06);
  --shadow-hover: 0 1px 0 rgba(42,28,10,0.12), 0 12px 40px rgba(42,28,10,0.12);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

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

/* â•â•â• REVEAL ANIMATIONS â•â•â• */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
}

/* Safe fallback â€” JS will override with GSAP */
@media (prefers-reduced-motion: no-preference) {
  .reveal      { opacity: 0; transform: translateY(40px); }
  .reveal-left  { opacity: 0; transform: translateX(-50px); }
  .reveal-right { opacity: 0; transform: translateX(50px); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SPLASH
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: splashHide 0.6s ease 4s forwards;
}

@keyframes splashHide {
  to { opacity: 0; pointer-events: none; }
}

.splash-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashReveal 0.9s ease 0.3s both;
}

.splash-logo img {
  width: clamp(340px, 55vw, 500px);
  height: auto;
  object-fit: contain;
  clip-path: circle(46% at 50% 50%);
  filter: drop-shadow(0 8px 32px rgba(201,120,64,0.25));
}

@keyframes splashReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}

.splash-bar {
  width: 0;
  height: 2px;
  background: var(--terra-light);
  animation: splashBar 1.8s ease 0.8s both;
}

@keyframes splashBar {
  to { width: 180px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 5vw;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(74,46,24,0.08);
}

.nav-logo img {
  height: 104px;
  width: 104px;
  object-fit: contain;
  border-radius: 50%;
}

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

.nav-links a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream);
  transition: color var(--transition);
  position: relative;
}

#nav.scrolled .nav-links a { color: var(--text); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--terra);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--terra) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover { background: var(--warm-brown) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: background var(--transition);
}

#nav.scrolled .nav-burger span { background: var(--text); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  transition: transform 14s ease;
}

.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,12,4,0.92) 0%,
    rgba(20,12,4,0.50) 40%,
    rgba(20,12,4,0.08) 75%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 6vh;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  overflow: hidden;
  padding-bottom: 0.2em;
}

.hero-line {
  display: block;
}

.hero-line--italic {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--terra-light);
}

.hero-line.visible { /* retained for JS compat */ }

/* Char-by-char hero reveal */
.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-char.char-visible { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(250,245,238,0.80);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250,245,238,0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,120,64,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,120,64,0.30);
}

.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary:hover {
  background: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,120,64,0.40);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.30);
}

.btn-whatsapp:hover {
  background: #128C7E;
  box-shadow: 0 8px 32px rgba(37,211,102,0.40);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TAGLINE / STATS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tagline-section {
  background: var(--warm-brown);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tagline-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,120,64,0.15) 0%, transparent 70%);
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 72px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--cream);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  color: var(--terra-light);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--terra-light);
  vertical-align: super;
  line-height: 1;
}

.stat p {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,245,238,0.60);
  margin-top: 8px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION LABELS / TITLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.section-label.label-lined::after {
  transform: scaleX(1);
}

.section-label--light { color: var(--terra-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-brown);
  margin-bottom: 24px;
}

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

.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--terra-light); }

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-sub { margin: 0 auto; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT / DANIELA
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-section {
  padding: 120px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-float {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.about-img-float img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
  box-shadow: 0 16px 56px rgba(42,20,6,0.32), 0 4px 16px rgba(42,20,6,0.18), 10px 10px 0px rgba(201,120,64,0.12);
}

.about-text { padding: 0 0 0 20px; }

.about-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-desc strong { color: var(--warm-brown); font-weight: 500; }

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0 40px;
}

.credential {
  display: flex;
  gap: 16px;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid rgba(42,28,10,0.10);
  padding: 16px 0;
  transition: padding var(--transition);
}

.credential:last-child { border-bottom: none; }
.credential:hover { padding-left: 6px; }

.credential-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-brown);
  margin-bottom: 2px;
}

.credential span {
  font-size: 13px;
  color: var(--text-light);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TREATMENTS â€” dark editorial
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.treatments-section {
  padding: 120px 0;
  background: #2C1A0C;
}

.treatments-section .section-label { color: var(--terra-light); }
.treatments-section .section-title { color: #F4EDE2; }
.treatments-section .section-title em { color: var(--terra-light); }
.treatments-section .section-sub { color: rgba(244,237,226,0.55); }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 64px;
  border: 1px solid rgba(255,255,255,0.05);
}

.treatment-card {
  background: #2C1A0C;
  overflow: hidden;
  transition: background var(--transition);
  animation-delay: var(--delay);
  display: flex;
  flex-direction: column;
}

.treatment-card:hover { background: #382210; }

/* Photo */
.treatment-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.treatment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85) saturate(0.9);
}

.treatment-card:hover .treatment-photo img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.0);
}

.treatment-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,14,6,0.75) 100%);
}

/* Body */
.treatment-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.treatment-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--terra-light);
  font-style: italic;
  margin-bottom: 10px;
  display: block;
}

.treatment-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: #F4EDE2;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.treatment-body p {
  font-size: 13.5px;
  color: rgba(244,237,226,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.treatment-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}

.treatment-body ul li {
  font-size: 12.5px;
  color: rgba(244,237,226,0.45);
  letter-spacing: 0.04em;
  padding-left: 14px;
  position: relative;
  text-transform: uppercase;
  font-weight: 400;
}

.treatment-body ul li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 10px;
  top: 1px;
}

.treatments-cta { text-align: center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TECNOLOGÃA
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tech-section {
  padding: 120px 0;
  background: var(--cream-dark);
}

.tech-header {
  text-align: center;
  margin-bottom: 80px;
}

.tech-header .section-sub { margin: 0 auto; }

.tech-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tech-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.tech-item--reverse { direction: rtl; }
.tech-item--reverse > * { direction: ltr; }

.tech-img-wrap {
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.tech-img-wrap img {
  object-fit: contain;
  max-height: 360px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Foto de tratamiento: ocupa todo el panel sin padding */
.tech-img-photo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tech-img-wrap:has(.tech-img-photo) {
  padding: 0;
  background: #e8ddd4;
}

.tech-item:hover .tech-img-wrap img { transform: scale(1.05); }

.tech-info {
  background: var(--warm-brown);
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-brand {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.tech-info h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 6px;
}

.tech-subtitle {
  font-size: 14px;
  color: var(--terra-light);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.tech-info p {
  font-size: 15px;
  color: rgba(250,245,238,0.75);
  line-height: 1.85;
  margin-bottom: 28px;
}

.tech-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-benefits li {
  font-size: 14px;
  color: rgba(250,245,238,0.80);
  padding-left: 18px;
  position: relative;
}

.tech-benefits li::before {
  content: ‘- ‘ !important;
  display: inline !important;
  color: red !important;
}

/* Colores de panel exactos por equipo */
.tech-item--plasma    .tech-info { background: #321D12; }
.tech-item--friolift  .tech-info { background: #382012; }
.tech-item--biopen    .tech-info { background: #382012; }
.tech-item--hifu      .tech-info { background: #341D12; }
.tech-item--ultraglow .tech-info { background: #382012; }
.tech-item--dermapen  .tech-info { background: #382012; }
.tech-item--hydra     .tech-info { background: #382012; }

/* HIFU sticker */
.tech-item--hifu .tech-sticker {
  top: 62%;
  bottom: auto;
  right: -8px;
  transform: translateY(-50%);
}
.tech-item--hifu:hover .tech-sticker {
  transform: translateY(calc(-50% - 4px)) scale(1.02);
}

/* Dermapen */
.tech-item--dermapen .tech-sticker {
  top: 50%;
  bottom: auto;
  right: 10px;
  width: 42%;
  transform: translateY(calc(-50% + 20px));
}
.tech-item--dermapen:hover .tech-sticker {
  transform: translateY(calc(-50% + 16px)) scale(1.02);
}

/* HidrodermabrasiÃ³n: +5mm arriba */
.tech-item--hydra .tech-sticker {
  top: 46%;
  bottom: auto;
  transform: translateY(-50%);
}
.tech-item--hydra:hover .tech-sticker {
  transform: translateY(calc(-50% - 4px)) scale(1.02);
}

/* Panel blanco vacÃ­o */
.tech-img-empty { background: #F4EDE2; }

/* FrioLift: +2cm arriba, +1cm derecha */
.tech-item--friolift .tech-sticker {
  top: 27%;
  bottom: auto;
  right: -20px;
  transform: translateY(-50%);
}
.tech-item--friolift:hover .tech-sticker {
  transform: translateY(calc(-50% - 4px)) scale(1.02);
}

/* BioPen: -4cm abajo, -1cm izquierda */
.tech-item--biopen .tech-sticker {
  top: 69%;
  bottom: auto;
  right: 10px;
  transform: translateY(-50%);
}
.tech-item--biopen:hover .tech-sticker {
  transform: translateY(calc(-50% - 4px)) scale(1.02);
}

/* â”€â”€ Plasma FusiÃ³n: mÃ¡quina detrÃ¡s del texto, base alineada con Ãºltimo bullet â”€â”€ */
.tech-info--with-sticker {
  position: relative;
  overflow: hidden;
}

/* Texto encima de la mÃ¡quina */
.plasma-text {
  position: relative;
  z-index: 2;
  padding-right: 36%;  /* deja espacio a la derecha pero la mÃ¡quina igual se "mete" detrÃ¡s */
}

/* MÃ¡quina: absoluta, derecha, base alineada con Ãºltimo bullet */
/* Base sticker */
.tech-sticker {
  position: absolute;
  right: -8px;
  width: 52%;
  max-height: 80%;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-sticker img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right center;
  display: block;
}

/* Plasma: base alineada con Ãºltimo bullet */
.tech-item--plasma .tech-sticker {
  bottom: 52px;
}
.tech-item--plasma:hover .tech-sticker { transform: translateY(-4px) scale(1.02); }


@media (max-width: 900px) {
  .plasma-text { padding-right: 8px; }
  .tech-sticker { width: 48%; bottom: 36px; right: -4px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EXPERIENCIA
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.exp-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.exp-bg-image {
  position: absolute;
  inset: 0;
}

.exp-bg-image img {
  object-position: center 30%;
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,46,24,0.92) 0%,
    rgba(74,46,24,0.78) 100%
  );
}

.exp-content {
  position: relative;
  z-index: 2;
}

.exp-content .section-title {
  margin-bottom: 60px;
  max-width: 560px;
}

.exp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.exp-pillar {
  background: rgba(253,250,246,0.08);
  border: 1px solid rgba(232,168,124,0.20);
  border-radius: var(--radius);
  padding: 36px 30px;
  backdrop-filter: blur(4px);
  transition: background var(--transition), transform var(--transition);
}

.exp-pillar:hover {
  background: rgba(253,250,246,0.12);
  transform: translateY(-4px);
}

.exp-pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--terra-light);
}
.exp-pillar-icon svg { width: 34px; height: 34px; }

.exp-pillar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--terra-light);
  margin-bottom: 14px;
  line-height: 1.2;
}

.exp-pillar p {
  font-size: 14px;
  color: rgba(250,245,238,0.75);
  line-height: 1.85;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   QUOTE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.quote-section {
  background: var(--cream);
  padding: 100px 0;
}

.quote-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 80px;
  background: transparent;
  border-top: 1px solid rgba(42,28,10,0.12);
  border-bottom: 1px solid rgba(42,28,10,0.12);
  position: relative;
}

.quote-marks {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--terra-pale);
  margin-bottom: 16px;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.5;
  margin-bottom: 28px;
}

.quote-card cite {
  font-size: 14px;
  color: var(--terra);
  letter-spacing: 0.08em;
  font-style: normal;
  font-weight: 500;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACTO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-section {
  padding: 120px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--terra);
}
.contact-icon svg { width: 22px; height: 22px; }

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-brown);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--terra);
  font-weight: 500;
  transition: color var(--transition);
}

.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--warm-brown); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: var(--dark);
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,245,238,0.08);
  margin-bottom: 24px;
}

.footer-logo img {
  height: auto;
  width: 200px;
  object-fit: contain;
  filter: brightness(1.1);
  
}

.footer-center {
  text-align: center;
}

.footer-center p {
  font-size: 13px;
  color: rgba(250,245,238,0.50);
  line-height: 1.8;
}

.footer-center p:first-child {
  color: rgba(250,245,238,0.80);
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-right a {
  font-size: 13px;
  color: rgba(250,245,238,0.50);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.footer-right a:hover { color: var(--terra-light); }

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250,245,238,0.25);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE MENU
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--warm-brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--cream);
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu ul li a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.mobile-menu ul li a:hover { color: var(--terra-light); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }
  .about-text { padding: 0; }

  .treatments-grid { grid-template-columns: 1fr 1fr; background: rgba(255,255,255,0.04); }

  .tech-item { grid-template-columns: 1fr; min-height: auto; }
  .tech-item--reverse { direction: ltr; }
  .tech-info { padding: 40px 32px; }

  .exp-pillars { grid-template-columns: 1fr; gap: 24px; }

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

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { align-items: center; flex-direction: row; justify-content: center; gap: 24px; }
  .footer-logo img { margin: 0 auto; }
}

@media (max-width: 600px) {
  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-photo { height: 200px; }

  .hero-content { padding: 0 6vw 12vh; }

  .quote-card { padding: 40px 28px; }

  .about-images { height: 300px; }

  .stat-number { font-size: 56px; }

  .tech-info { padding: 32px 24px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING WHATSAPP
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.wa-float svg { width: 28px; height: 28px; fill: white; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.08); }
}

@media (max-width: 600px) {
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}









.credential-icon--img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.credential-icon--img img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.85;
}













