/* ================================================================
   NAIL ME UP — Estilos Principales
   Quilmes, Buenos Aires, Argentina
   ================================================================ */

/* === VARIABLES === */
:root {
  /* Paleta marca Nail Me Up — negro mármol + rosa gold metálico */
  --pink-light: #DEADA6;    /* rosa gold claro */
  --pink: #C4857A;          /* rosa gold principal (del logo) */
  --pink-dark: #9E6B63;     /* rosa gold oscuro */
  --gold-light: #E8C98B;    /* dorado cálido claro */
  --gold: #C9A96E;          /* dorado principal */
  --gold-dark: #A88748;     /* dorado profundo */
  --white: #FFFFFF;
  --cream: #FAF0EC;         /* crema cálida */
  --dark: #13100F;          /* negro mármol profundo */
  --dark-2: #1E1614;        /* negro cálido secundario */
  --dark-3: #0D0B0A;        /* negro más profundo */
  --gray: #7A6E6C;
  --light-gray: #F5F0EE;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.10);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.22);
  --shadow-pink: 0 8px 30px rgba(196,133,122,0.30);
  --shadow-gold: 0 8px 30px rgba(201,169,110,0.30);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

/* === RESET Y BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* iOS: cuando el menú mobile está abierto, bloquear scroll */
body.menu-open {
  position: fixed;
  width: 100%;
  overflow-y: scroll; /* mantiene el ancho para evitar saltos */
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: none; border: none; outline: none; font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === CURSOR PERSONALIZADO === */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

#cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-hover #cursor { width: 20px; height: 20px; background: var(--gold); }
.cursor-hover #cursor-follower { width: 50px; height: 50px; }

.sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  pointer-events: none;
  z-index: 99997;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: sparkleAnim 0.6s ease-out forwards;
}

@keyframes sparkleAnim {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(0) translateY(-20px); }
}

/* === LOADING SCREEN === */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loading-logo {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--pink-light) 70%, var(--gold-light) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAnim 2s linear infinite;
  margin-bottom: 2rem;
}


.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 99px;
  animation: loadingFill 2s ease-in-out forwards;
}

@keyframes loadingFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* === KEYFRAMES GLOBALES === */
@keyframes shimmerAnim {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(212,175,55,0.5); }
  50%       { text-shadow: 0 0 40px rgba(212,175,55,0.9), 0 0 60px rgba(233,30,140,0.4); }
}

/* === ANIMACIONES DE ENTRADA === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === BOTONES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(233,30,140,0.4); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,175,55,0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline-pink:hover { background: var(--pink); color: var(--white); transform: translateY(-3px); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* === TÍTULOS Y SECCIÓN HEADER === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-label::before, .section-label::after {
  content: '✦';
  font-size: 0.6rem;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle { margin: 0 auto; }

/* === DIVIDER DECORATIVO === */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  justify-content: center;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider i { color: var(--gold); font-size: 0.8rem; }

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-slow);
}

#navbar.scrolled {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo — REEMPLAZAR imagen si se tiene logo oficial */
.nav-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); background: rgba(255,255,255,0.08); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 10px;
  cursor: pointer;
  /* iOS: necesario para que los eventos táctiles funcionen */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
  min-width: 44px; /* área mínima de toque recomendada por Apple */
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; /* en lugar de inset: 0, más compatible con iOS */
  background: rgba(19,16,15,0.98);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.3s ease; }
.mobile-menu .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.mobile-menu .nav-links a {
  font-size: 1.4rem;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-style: italic;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  display: block;
  width: 100%;
  text-align: center;
}
.mobile-menu .nav-cta { margin-top: 24px; }

/* ================================================================
   HERO SECTION
   ================================================================ */
#inicio {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Fotos/IMG_6090.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,10,9,0.90) 0%,
    rgba(196,133,122,0.18) 50%,
    rgba(13,10,9,0.85) 100%
  );
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.hero-title .gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #FFF8DC 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAnim 4s linear infinite, fadeInUp 0.7s ease 0.5s both;
  display: block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.7s ease 0.9s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

/* ================================================================
   STATS
   ================================================================ */
#stats {
  padding: 70px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,133,122,0.07) 0%, rgba(201,169,110,0.07) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(212,175,55,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* ================================================================
   SERVICIOS
   ================================================================ */
#servicios {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

#servicios::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--pink));
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233,30,140,0.03), rgba(212,175,55,0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover::before { opacity: 1; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-pink);
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: rotateY(360deg); }

.service-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(233,30,140,0.1), rgba(212,175,55,0.1));
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.service-price-badge .price-label { color: var(--gray); font-weight: 400; }
.service-price-badge .price-amount { color: var(--pink-dark); font-size: 1rem; }

/* ================================================================
   GALERÍA
   ================================================================ */
#galeria {
  padding: 100px 0;
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--gray);
  transition: var(--transition);
  cursor: none;
}
.filter-btn:hover { background: rgba(233,30,140,0.1); color: var(--pink); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.gallery-desc { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.gallery-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Nota de conversión HEIC */
.gallery-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--gray);
  display: none;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; animation: fadeIn 0.3s ease; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

#lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: none;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--pink); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.lightbox-nav:hover { background: var(--pink); }
.lightbox-prev { left: -58px; }
.lightbox-next { right: -58px; }

/* ================================================================
   CAPACITACIONES
   ================================================================ */
#capacitaciones {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#capacitaciones::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(196,133,122,0.14) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.12) 0%, transparent 60%);
}

#capacitaciones .section-title { color: var(--white); }
#capacitaciones .section-subtitle { color: rgba(255,255,255,0.65); }

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.training-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  backdrop-filter: blur(10px);
}

.training-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.training-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
}

.training-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(233,30,140,0.3), rgba(212,175,55,0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.training-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.training-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.training-includes {
  margin-bottom: 1.5rem;
}

.training-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 5px 0;
}
.training-includes li i { color: var(--gold); font-size: 0.75rem; }

.training-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
}

/* ================================================================
   PRECIOS
   ================================================================ */
#precios {
  padding: 100px 0;
  background: var(--cream);
}

.prices-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.price-tab {
  padding: 10px 26px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: none;
  box-shadow: var(--shadow-sm);
}
.price-tab:hover { border-color: var(--pink-light); color: var(--pink); }
.price-tab.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.price-panel { display: none; }
.price-panel.active { display: block; animation: fadeIn 0.4s ease; }

.price-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.price-table-header {
  display: grid;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 24px;
}

.price-row {
  display: grid;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  align-items: center;
  transition: background 0.2s ease;
}
.price-row:hover { background: rgba(233,30,140,0.03); }
.price-row:last-child { border-bottom: none; }

/* Grid para tabla manos: 3 cols */
.price-table.manos .price-table-header,
.price-table.manos .price-row { grid-template-columns: 1fr 140px 140px; }

/* Grid para tabla remocion: 3 cols */
.price-table.remocion .price-table-header,
.price-table.remocion .price-row { grid-template-columns: 1fr 160px 160px; }

/* Grid para tabla adicionales: 3 cols */
.price-table.adicionales .price-table-header,
.price-table.adicionales .price-row { grid-template-columns: 1fr 140px 140px; }

.price-service-name { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.price-amount {
  font-weight: 700;
  color: var(--pink-dark);
  text-align: center;
  font-size: 1rem;
}
.price-amount.secondary { color: var(--gold-dark); }
.price-amount.muted { color: var(--gray); font-weight: 400; font-size: 0.85rem; }

.prices-notes {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
}
.prices-notes strong { color: var(--dark); }

.prices-footer {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================================================================
   TESTIMONIOS
   ================================================================ */
#testimonios {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-carousel {
  overflow: hidden;
  margin: 0 -12px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(233,30,140,0.1);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.testimonial-service { color: var(--pink); font-size: 0.8rem; margin-top: 1px; }
.testimonial-date { color: var(--gray); font-size: 0.78rem; margin-top: 1px; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: none;
}
.carousel-btn:hover { background: var(--pink); color: var(--white); box-shadow: var(--shadow-pink); }

.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: var(--transition);
  cursor: none;
}
.carousel-dot.active { background: var(--pink); width: 24px; border-radius: 4px; }

/* ================================================================
   SOBRE MÍ
   ================================================================ */
#sobre-mi {
  padding: 100px 0;
  background: var(--cream);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* REEMPLAZAR: Foto de Giuliana — cambiar la URL de background-image */
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-light) 50%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Decoraciones flotantes */
.about-deco {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  animation: floatAnim 4s ease-in-out infinite;
}
.about-deco-1 {
  top: 30px; right: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation-delay: 0s;
}
.about-deco-2 {
  bottom: 60px; left: -24px;
  animation-delay: 2s;
}
.about-deco .deco-icon { color: var(--pink); font-size: 1.2rem; }
.about-deco .deco-value { font-weight: 800; font-size: 1.1rem; color: var(--dark); }
.about-deco .deco-label { font-size: 0.75rem; color: var(--gray); }

.about-content .section-label { justify-content: flex-start; }
.about-content .section-label::before, .about-content .section-label::after { flex: 0; }

.about-content .section-title { margin-bottom: 0.5rem; }
.about-name { color: var(--pink); font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; margin-bottom: 1.5rem; }

.about-text { color: var(--gray); line-height: 1.85; margin-bottom: 1rem; font-size: 0.95rem; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0 2rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid rgba(233,30,140,0.2);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.about-badge i { color: var(--pink); font-size: 0.75rem; }

/* ================================================================
   CONTACTO
   ================================================================ */
#contacto {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#contacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,133,122,0.12) 0%, transparent 70%);
}

#contacto .section-title { color: var(--white); }
#contacto .section-subtitle { color: rgba(255,255,255,0.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(212,175,55,0.3); transform: translateX(6px); }

.contact-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(233,30,140,0.3), rgba(212,175,55,0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card-label { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; }
.contact-card-value { color: var(--white); font-weight: 600; font-size: 0.95rem; margin-top: 2px; }

.contact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.contact-cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  line-height: 1.2;
}
.contact-cta-title .gold { color: var(--gold-light); }

.contact-cta-text { color: rgba(255,255,255,0.65); line-height: 1.7; }

.contact-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-btn.instagram {
  background: linear-gradient(135deg, #E1306C, #833AB4);
  color: var(--white);
}
.social-btn.instagram:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(225,48,108,0.4); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--dark-3);
  padding: 50px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { font-size: 1.8rem; display: inline-block; margin-bottom: 1rem; }

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); color: var(--white); }

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* ================================================================
   BOTÓN FLOTANTE WHATSAPP
   ================================================================ */
#whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: none;
}

.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
  flex-shrink: 0;
}
.whatsapp-btn:hover { transform: scale(1.1); animation: none; }

.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
#whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .training-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { max-width: 420px; margin: 0 auto; }
  .contact-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card  { flex: 0 0 calc(50% - 12px); }
}

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

  .services-grid     { grid-template-columns: 1fr; }
  .training-grid     { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card  { flex: 0 0 calc(100% - 24px); }

  .price-table.manos .price-table-header,
  .price-table.manos .price-row { grid-template-columns: 1fr 90px 90px; }
  .price-table.remocion .price-table-header,
  .price-table.remocion .price-row { grid-template-columns: 1fr 100px 100px; }
  .price-table.adicionales .price-table-header,
  .price-table.adicionales .price-row { grid-template-columns: 1fr 90px 90px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero-title   { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-buttons { flex-direction: column; align-items: flex-start; }

  .lightbox-prev { left: -46px; }
  .lightbox-next { right: -46px; }

  .about-deco-1, .about-deco-2 { display: none; }

  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.8rem; }
  #whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 1.4rem; }
  .prices-tabs { gap: 6px; }
  .price-tab { padding: 8px 16px; font-size: 0.82rem; }
}
