/* Google Fonts - Tipografía Moderna */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css");

:root {
  /* Paleta Rosada Premium - Wellness & Beauty */
  --primary-color: #ec4899; /* Rosa vibrante principal - feminidad y cuidado */
  --primary-light: #f9a8d4; /* Rosa claro - suavidad */
  --primary-dark: #be185d; /* Rosa oscuro - elegancia */
  --secondary-color: #d946ef; /* Magenta moderno - innovación y belleza */
  --secondary-light: #e879f9; /* Magenta claro */
  --secondary-dark: #a21caf; /* Magenta oscuro */
  --accent-color: #f59e0b; /* Dorado cálido - lujo y vitalidad */
  --accent-light: #fbbf24; /* Dorado claro */
  --accent-dark: #d97706; /* Dorado oscuro */

  /* Neutros Modernos */
  --text-dark: #0f172a; /* Slate 900 - máximo contraste */
  --text-medium: #334155; /* Slate 700 */
  --text-light: #64748b; /* Slate 500 */
  --text-lighter: #94a3b8; /* Slate 400 */

  /* Fondos Rosados Sofisticados */
  --bg-primary: #ffffff; /* Blanco puro */
  --bg-secondary: #fdf2f8; /* Rosa 50 - sutil y femenino */
  --bg-accent: #fce7f3; /* Rosa 100 - contraste suave */
  --bg-dark: #1f1726; /* Púrpura oscuro - elegante */
  --bg-light: #fef7ff; /* Magenta 25 - frescura rosada */

  /* Bordes Rosados Refinados */
  --border-light: #f3e8ff; /* Púrpura 100 */
  --border-medium: #e9d5ff; /* Púrpura 200 */
  --border-accent: #f9a8d4; /* Rosa 300 - acento suave */

  /* Shadows Rosadas - Refined */
  --shadow-sm: 0 1px 2px 0 rgba(236, 72, 153, 0.08);
  --shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(236, 72, 153, 0.15),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(236, 72, 153, 0.2),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(236, 72, 153, 0.25);
  --shadow-pink: 0 10px 30px rgba(236, 72, 153, 0.3);
  --shadow-purple: 0 10px 30px rgba(217, 70, 239, 0.3);

  /* Gradientes Rosados Premium */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-light) 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--accent-light) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--accent-color) 100%
  );
  --gradient-soft: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  --gradient-dark: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--secondary-dark) 100%
  );
  --gradient-romantic: linear-gradient(
    135deg,
    #ec4899 0%,
    #d946ef 35%,
    #a855f7 70%,
    #8b5cf6 100%
  );
  --gradient-sunset: linear-gradient(
    135deg,
    #f59e0b 0%,
    #ec4899 50%,
    #d946ef 100%
  );

  /* Spacing System */
  --spacing-xs: 0.5rem; /* 8px */
  --spacing-sm: 1rem; /* 16px */
  --spacing-md: 1.5rem; /* 24px */
  --spacing-lg: 2rem; /* 32px */
  --spacing-xl: 3rem; /* 48px */
  --spacing-2xl: 4rem; /* 64px */
  --spacing-3xl: 6rem; /* 96px */
  --spacing-4xl: 8rem; /* 128px */

  /* Section Spacing */
  --section-padding: var(--spacing-3xl) 0;
  --section-gap: var(--spacing-2xl);
  --card-padding: var(--spacing-lg);
  --element-gap: var(--spacing-md);

  /* Animations */
  --transition-fast: all 0.15s ease-out;
  --transition-normal: all 0.3s ease-out;
  --transition-slow: all 0.5s ease-out;
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-primary);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Hierarchy - Montserrat for Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-header h2,
.hero h1,
.service-detailed-card h3,
.benefit-card h3,
.testimonial h3,
.faq-question,
.cta-primary,
.service-cta {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Section Headers - Consistent Styling */
.section-header {
  text-align: center;
  margin-bottom: var(--section-gap);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.nurse-logo {
  height: 80px;
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  margin: -0.625rem;
  border-radius: 0.375rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-button:active {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-button svg,
.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu Close Button */
.mobile-menu-close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  margin: -0.625rem;
  border-radius: 0.375rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close-button:active {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-close-button svg,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu Transitions */
#mobile-menu {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#mobile-menu[open] {
  opacity: 1;
  visibility: visible;
}

#mobile-menu:not([open]) {
  opacity: 0;
  visibility: hidden;
}

#mobile-menu .el-dialog-panel {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateX(0);
  opacity: 1;
}

#mobile-menu.closing .el-dialog-panel {
  transform: translateX(100%);
  opacity: 0;
}

/* Backdrop fade effect */
#mobile-menu::backdrop {
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease-in-out;
}

#mobile-menu.closing::backdrop {
  opacity: 0;
}

/* Smooth slide-in effect on open */
#mobile-menu[open] .el-dialog-panel {
  animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Section Base Styles */
section {
  padding: var(--section-padding);
}

section:nth-child(even) {
  background: var(--bg-secondary);
}

section:nth-child(odd) {
  background: var(--bg-primary);
}

/* Animations & Keyframes */
@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 fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s var(--bounce) forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Stagger animations */
.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}
.stagger-5 {
  animation-delay: 0.5s;
}
.stagger-6 {
  animation-delay: 0.6s;
}

/* Navigation */
.navbar {
  background: var(--bg-primary);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

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

.logo {
  width: 2.5rem;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text-medium);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-normal);
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
}

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

.cta-nav {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.9rem;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Typography - Refined Hierarchy */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.6;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons - Diseño Moderno */
.cta-primary {
  background: var(--gradient-hero);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-slow);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.4),
    0 10px 20px rgba(217, 70, 239, 0.3);
  filter: brightness(1.05);
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.cta-secondary {
  background: var(--bg-primary);
  color: var(--primary-color);
  padding: 1.25rem 2.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.cta-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.cta-secondary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--text-medium);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  background: var(--bg-accent);
  border-color: var(--border-medium);
  transform: translateY(-1px);
}

/* WhatsApp Sticky Button - Enhanced */
.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-sticky a {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  width: 90px;
}

.whatsapp-sticky a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.whatsapp-sticky a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.whatsapp-sticky a:hover::before {
  opacity: 1;
}

.whatsapp-icon {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Offer Bar - Enhanced */
.offer-bar {
  background: var(--gradient-accent);
  color: white;
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.offer-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

.cupos {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-left: 0.75rem;
  font-weight: 700;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Section - Diseño Moderno */
.hero {
  padding: var(--spacing-4xl) 0 var(--spacing-3xl);
  background: linear-gradient(
    135deg,
    var(--bg-light) 0%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 100%
  );
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(236, 72, 153, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(217, 70, 239, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out 0.2s forwards;
}

.hero-badge {
  display: inline-block;
  background: rgba(236, 72, 153, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-trust-indicators {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.trust-text {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 95%;
}

.hero-subtitle strong {
  color: var(--primary-color);
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.benefit-check {
  color: #10b981;
  font-weight: 700;
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 2rem;
}

.cta-text {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cta-subtext {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 400;
}

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.whatsapp-icon {
  font-size: 1.2rem;
}

.hero-guarantee {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.hero-guarantee p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-align: center;
}

.hero-image {
  position: relative;
  opacity: 0;
  animation: fadeInRight 0.8s ease-out 0.4s forwards;
}

.hero-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  min-width: 240px;
  animation: float 3s ease-in-out infinite;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.card-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.card-location {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Benefits Section - Moderno */
.benefits {
  padding: 6rem 0;
  background: var(--gradient-soft);
  position: relative;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 70% 30%,
      rgba(236, 72, 153, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(217, 70, 239, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.benefit-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

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

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.benefit-item:nth-child(2) .benefit-icon {
  animation-delay: 0.5s;
}

.benefit-item:nth-child(3) .benefit-icon {
  animation-delay: 1s;
}

.benefit-item:nth-child(4) .benefit-icon {
  animation-delay: 1.5s;
}

.benefit-item h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Services Section - Premium Grid */
.services {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.375rem;
  color: var(--text-light);
  margin-bottom: 4rem;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

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

.service-card:hover::before {
  opacity: 0.03;
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(even) .service-icon {
  animation-delay: 1s;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-tagline {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
}

.service-description {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.service-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-slow);
}

.service-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-cta:hover::before {
  left: 100%;
}

/* Services Hero Section */
.services-hero {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.2;
}

.services-text > p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.services-list {
  display: grid;
  gap: 2rem;
}

.service-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Products Section */
.products {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

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

.products-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}

.products-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.products-showcase img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

/* Detailed Services Section */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--section-gap);
  align-items: stretch;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin: 0;
}

/* Esta definición se elimina porque está duplicada */

.service-detailed-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  border: 1px solid var(--border-light);
}

.service-detailed-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

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

.service-detailed-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 1;
}

.service-detailed-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
}

.service-detailed-card .service-tagline {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.service-detailed-card .service-benefits {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  font-size: 1rem;
  flex-grow: 1;
}

.service-detailed-card .service-cta {
  background: var(--gradient-primary);
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 100%;
  margin-top: auto;
  align-self: flex-end;
}

.service-detailed-card .service-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Service Buttons Container */
.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

/* Service Schedule Button */
.service-cta-schedule {
  background: var(--gradient-sunset);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.service-cta-schedule::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.service-cta-schedule:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-purple);
}

.service-cta-schedule:hover::before {
  left: 100%;
}

.service-cta-schedule:active {
  transform: translateY(-1px) scale(0.98);
}

/* Service Secondary Button (WhatsApp) */
.service-cta-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: 0.5rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.service-cta-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.service-cta-secondary:hover {
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.service-cta-secondary:hover::before {
  left: 0;
}

.service-cta-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* CTA Intermedio */
.cta-intermedio {
  background: var(--bg-secondary);
  padding: var(--spacing-xl) var(--spacing-lg);
  margin-top: var(--section-gap);
  border-radius: 20px;
  text-align: center;
}

.cta-content-simple {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content-simple h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  text-align: center;
}

.cta-content-simple p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  text-align: center;
}

.cta-content-simple .cta-primary {
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: 1rem;
  display: inline-block;
  margin: 0 auto;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== BENEFITS GRID RESPONSIVE - NUEVOS MEDIA QUERIES ===== */

/* Tablet: 2 columnas */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

/* Mobile: 1 columna */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* ===== SERVICES DETAILED GRID RESPONSIVE - NUEVOS MEDIA QUERIES ===== */

/* Tablet: 2 columnas */
@media (max-width: 1024px) {
  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

/* Mobile: 1 columna */
@media (max-width: 768px) {
  .services-detailed-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--card-padding);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  margin: 0.5rem;
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-romantic);
  box-shadow: var(--shadow-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Before After Section */
.before-after {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.before-after-header {
  text-align: center;
  margin-bottom: 4rem;
}

.before-after-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.before-after-header p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.before-after-item {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.before-after-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.comparison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.before-image,
.after-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.before-image .label,
.after-image .label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.treatment-info {
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

/* Specialists Section */
.specialists {
  padding: 6rem 0;
  background: var(--bg-primary);
}

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

.specialists-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.2;
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.specialist-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

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

.specialist-image {
  margin-bottom: 1.5rem;
}

.specialist-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-light);
}

.specialist-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.specialist-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.specialist-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stars {
  color: #ffc107;
  font-size: 1rem;
}

.rating-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--bg-dark);
  color: white;
}

.cta-section .section-header h2 {
  color: white;
}

.cta-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.cta-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  text-align: left;
}

.cta-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

/* Gallery Section - Instagram Reels */
.gallery {
  padding: 4rem 0;
  background: var(--bg-light);
}

.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.reel-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.reel-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.reel-placeholder {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.reel-container:hover .reel-placeholder img {
  transform: scale(1.05);
}

.reel-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.reel-play-button:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  z-index: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.reel-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.reel-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.instagram-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
}

.instagram-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 148, 51, 0.4);
}

@media (max-width: 768px) {
  .instagram-reels-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reel-placeholder {
    aspect-ratio: 4/5;
  }

  .gallery {
    padding: 3rem 0;
  }
}

/* Treatment Gallery */
.treatment-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 168, 143, 0.9) 0%,
    rgba(217, 70, 239, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

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

.overlay-content {
  text-align: center;
  color: white;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.treatment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.gallery-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.gallery-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.gallery-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 148, 51, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
    padding: 3rem 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .process-step {
    padding: 1rem;
  }

  .treatment-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .gallery-cta {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }

  .gallery-cta h3 {
    font-size: 1.4rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-primary,
  .instagram-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Contact Form */
.form-content {
  max-width: 800px;
  margin: 0 auto;
}

.form-text {
  text-align: center;
  margin-bottom: var(--section-gap);
}

.form-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.form-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--spacing-sm);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-normal);
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

/* Before/After Section */
.before-after {
  padding: 4rem 0;
  background: var(--white);
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.before,
.after {
  position: relative;
  text-align: center;
}

.before img,
.after img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.disclaimer {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Testimonials Section */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: var(--spacing-lg);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto var(--spacing-lg) auto;
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: auto;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.6;
  font-size: 0.95rem;
}

.author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.treatment-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.testimonial p strong {
  color: var(--primary-color);
  font-weight: 600;
}

.social-proof {
  text-align: center;
  margin-top: 2rem;
}

.social-proof p {
  font-size: 1.25rem;
  color: var(--primary-color);
}

/* Offer Banner - Enhanced Design */
.offer-banner {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-dark) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.offer-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.offer-banner > .container {
  position: relative;
  z-index: 2;
}

/* Offer Banner Content Layout */
.offer-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 968px) {
  .offer-banner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }
}

/* Offer Main Content */
.offer-main {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.offer-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(123, 168, 143, 0.4);
}

.offer-banner h2 {
  color: white;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Offer Benefits */
.offer-benefits {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.4;
}

.benefit-icon {
  background: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(123, 168, 143, 0.4);
}

/* Price Comparison */
.offer-value {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.price-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.original-price {
  text-align: left;
}

.offer-price {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
}

.original-price .price-amount {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.offer-price .price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-offer {
  color: var(--accent-color);
  font-size: 1rem;
  text-align: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(203, 163, 92, 0.3);
}

/* Offer Sidebar */
.offer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: center;
  padding: 1rem;
}

.urgency-card,
.guarantee-card,
.testimonial-mini {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease-out forwards;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.urgency-card {
  animation-delay: 0.2s;
}

.guarantee-card {
  animation-delay: 0.4s;
}

.testimonial-mini {
  animation-delay: 0.6s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.urgency-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary-dark);
  margin-bottom: 0.75rem;
}

.urgency-icon {
  font-size: 1.25rem;
}

.urgency-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.spots-remaining {
  text-align: center;
  padding: 0.75rem;
  background: var(--primary-color);
  border-radius: 8px;
  color: white;
}

.spots-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.spots-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.guarantee-card {
  text-align: center;
}

.guarantee-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.guarantee-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.testimonial-mini {
  font-style: italic;
  text-align: left;
  min-height: 140px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
}

/* CTA Section */
.offer-cta-section {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-offer-main {
  background: var(--primary-color);
  color: white;
  border: 3px solid var(--primary-color);
  font-weight: 800;
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  min-width: 320px;
  position: relative;
  overflow: hidden;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 143, 0.6);
  }
}

.cta-offer-main:hover {
  background: white;
  color: var(--secondary-dark);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-secondary-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.whatsapp-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

.whatsapp-icon {
  font-size: 1.25rem;
}

.schedule-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .offer-banner {
    padding: 3rem 0;
  }

  .offer-main {
    text-align: center;
    padding: 1rem;
  }

  .offer-sidebar {
    align-self: center;
    padding: 1rem;
  }

  .offer-benefits {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
  }

  .price-comparison {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .original-price,
  .offer-price {
    text-align: center;
  }

  .cta-offer-main {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
  }

  .whatsapp-cta {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
}

/* Lead Form */
.lead-form {
  padding: 4rem 0;
  background: var(--white);
}

.lead-form h2 {
  margin-bottom: 2rem;
}

#leadForm {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--border-light);
  border-radius: 16px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1), 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

/* Form message styles moved to responsive section */

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: var(--spacing-sm);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md);
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* FAQ Answer Content Styling */
.faq-answer p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: none;
}

.faq-answer ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.faq-answer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
}

.faq-answer ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.faq-answer em {
  color: var(--primary-color);
  font-style: italic;
  font-weight: 500;
}

/* Location Section */
.location {
  padding: 4rem 0;
  background: var(--white);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-info p {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.hours {
  margin-top: 2rem;
}

.hours h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.map-placeholder {
  background: var(--bg-light);
  border-radius: 1rem;
  overflow: hidden;
}

.map-box {
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
}

/* Footer - Diseño Moderno */
.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(236, 72, 153, 0.12) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(217, 70, 239, 0.1) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

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

.footer-section h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-normal);
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  color: var(--primary-light);
}

/* WhatsApp Sticky Button - Enhanced */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.whatsapp-sticky a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-sticky a:hover::before {
  opacity: 1;
}

.whatsapp-sticky a:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-sticky img,
.whatsapp-sticky svg {
  width: 38px;
  height: 38px;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.1);
  flex-shrink: 0;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3),
      0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-sticky.pulse a {
  animation: whatsapp-pulse 2s infinite;
}

/* WhatsApp tooltip */
.whatsapp-sticky::after {
  content: "¡Agenda por WhatsApp!";
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-sticky::before {
  content: "";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1f2937;
  opacity: 0;
  transition: all 0.3s ease;
}

.whatsapp-sticky:hover::after,
.whatsapp-sticky:hover::before {
  opacity: 1;
}

/* CTA Buttons Group */
.cta-buttons-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* WhatsApp CTA Button */
.cta-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-whatsapp:hover::before {
  left: 100%;
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp span {
  font-size: 1.1rem;
}

/* Responsive adjustments for CTA buttons */
@media (max-width: 768px) {
  .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-whatsapp {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: center;
  }

  /* Service buttons mobile */
  .service-buttons {
    gap: 0.5rem;
  }

  .service-cta,
  .service-cta-schedule,
  .service-cta-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Específico para el botón del formulario */
  .form-group .cta-primary {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
  }
}

/* Media query para pantallas muy pequeñas */
@media (max-width: 480px) {
  .form-group .cta-primary {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
    min-height: 44px;
    white-space: normal;
    line-height: 1.3;
  }

  /* Benefits eliminado - se reescribirá */

  /* Form Messages Mobile */
  .form-message {
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0.75rem 0;
    border-radius: 6px;
    max-width: calc(100vw - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Form Container Mobile */
  .smart-form {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  /* WhatsApp Tooltip Mobile */
  .whatsapp-dynamic-tooltip {
    font-size: 0.8rem !important;
    max-width: calc(100vw - 170px) !important;
    right: 90px !important;
    bottom: 15px !important;
    top: auto !important;
    transform: none !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.4 !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
  }
}

/* WhatsApp Tooltip Animation */
@keyframes fadeInTooltip {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.whatsapp-text {
  font-size: 0.95rem;
}

/* Form Messages - Responsive */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
  cursor: pointer;
}

/* Medical Disclaimer */
.medical-disclaimer {
  background: var(--bg-secondary);
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
}

.medical-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  section {
    padding: var(--spacing-2xl) 0;
  }

  /* Benefits ya configurado en media query específico */

  /* Services ya configurado en media query específico */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  section {
    padding: var(--spacing-xl) 0;
  }

  .section-header {
    margin-bottom: var(--spacing-xl);
  }

  /* Navigation */
  .nav-menu {
    display: none;
  }

  .cta-nav {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero {
    padding: 4rem 0 3rem;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-trust-indicators {
    gap: 1rem;
    justify-content: center;
  }

  .trust-badge {
    flex: 1;
    min-width: 80px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-sm);
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-image img {
    height: 400px;
  }

  .hero-floating-card {
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
  }

  /* Benefits */
  .benefits {
    padding: 4rem 0;
  }

  .benefits-header {
    margin-bottom: 3rem;
  }

  /* Benefits ya configurado en media query específico */

  /* Before After */
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-images {
    gap: 0.5rem;
  }

  .before-image img,
  .after-image img {
    height: 150px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonial p {
    text-align: center;
    font-size: 0.9rem;
  }

  /* Carousel Mobile */
  .testimonials-carousel {
    min-height: 280px;
  }

  .testimonials-carousel .testimonial-slide {
    max-width: 100%;
    padding: 1.5rem;
  }

  /* WhatsApp Sticky */
  .whatsapp-sticky {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-sticky a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Services */
  .services-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-image {
    order: -1;
  }

  .services-image img {
    height: 300px;
  }

  /* Specialists */
  .specialists-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .specialist-card {
    padding: 1.5rem;
  }

  /* CTA Section */
  .cta-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .cta-image {
    order: -1;
  }

  .cta-image img {
    height: 300px;
  }

  .offer-content {
    gap: var(--spacing-md);
  }

  .cta-intermedio {
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-xl);
  }

  /* Instagram Reels */
  .instagram-reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .instagram-cta {
    padding: 2rem 1.5rem;
  }

  /* Instagram Reels Mobile */
  .instagram-reels-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reel-container {
    max-width: 350px;
    margin: 0 auto;
  }

  .instagram-cta {
    padding: 2rem 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact Form */
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  /* Testimonials Tablet */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 2rem;
    min-height: 100vh;
    align-items: center;
  }

  .hero-content {
    gap: 2rem;
    align-items: center;
  }

  .hero-image img {
    height: 300px;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto var(--spacing-lg) auto;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonial p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }

  .treatment-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  /* Mobile Menu Button */
  .mobile-menu-button {
    padding: 0.5rem;
    margin: -0.5rem;
  }

  .mobile-menu-button svg,
  .menu-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Mobile Menu Close Button */
  .mobile-menu-close-button {
    padding: 0.5rem;
    margin: -0.5rem;
  }

  .mobile-menu-close-button svg,
  .close-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Carousel Mobile Small */
  .testimonials-carousel {
    min-height: 250px;
  }

  .testimonials-carousel .testimonial-slide {
    padding: 1rem;
  }

  .carousel-nav {
    margin-top: 1.5rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  /* Mobile Menu Transitions - Mobile */
  #mobile-menu .el-dialog-panel {
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
  }

  #mobile-menu[open] .el-dialog-panel {
    animation: slideInFromRight 0.25s ease-out;
  }

  @keyframes slideInFromRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .services-hero,
  .products,
  .specialists,
  .cta-section,
  .gallery,
  .contact-form {
    padding: 3rem 0;
  }

  /* Mobile Menu Link Click Effect */
  .mobile-menu-link {
    transition: all 0.2s ease;
  }

  .mobile-menu-link.clicked {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(0.98);
  }
}

/* Contact Form Section - Diseño Moderno */
.contact-form {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-light) 100%
  );
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 80% 20%,
      rgba(236, 72, 153, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(217, 70, 239, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.specialist-card {
  padding: 1rem;
}

.footer {
  padding: 3rem 0 1.5rem;
}

/* Benefits Mobile - eliminado */

/* Services Mobile - eliminado */

.benefit-card {
  padding: var(--spacing-md);
}

.service-detailed-card {
  padding: var(--spacing-lg);
  min-height: 280px;
}

.cta-intermedio {
  padding: var(--spacing-md) var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.cta-content-simple {
  max-width: 100%;
}

/* Before After Mobile */
.before-after {
  padding: 3rem 0;
}

.before-after-item {
  padding: 1rem;
}

.before-image img,
.after-image img {
  height: 120px;
}

/* WhatsApp Mobile */
.whatsapp-sticky {
  bottom: 0.5rem;
  right: 0.5rem;
}

.whatsapp-text {
  display: none;
}

.whatsapp-sticky a {
  padding: 0.75rem;
  border-radius: 50%;
  min-width: 50px;
  min-height: 50px;
  justify-content: center;
}

/* Hero Buttons - Consistent with Landing */
.hero a[data-gtm-event="click_cta_hero"] {
  position: relative;
  overflow: hidden;
}

.hero a[data-gtm-event="click_cta_hero"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-slow);
}

.hero a[data-gtm-event="click_cta_hero"]:hover::before {
  left: 100%;
}

.hero a[data-gtm-event="click_whatsapp"]:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Hero Container Positioning */
div[style*="background-color: var(--bg-dark)"] {
  position: relative;
  padding-bottom: 80px;
}

/* Hero Wave Separator */
.hero-wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 10;
}

.wave-svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-fill {
  fill: var(--bg-primary);
}

/* Wave Animation */
.wave-svg path:nth-child(1) {
  animation: wave-float-1 4s ease-in-out infinite;
}

.wave-svg path:nth-child(2) {
  animation: wave-float-2 4s ease-in-out infinite;
}

.wave-svg path:nth-child(3) {
  animation: wave-float-3 4s ease-in-out infinite;
}

@keyframes wave-float-1 {
  0%,
  100% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(-25px) translateY(-8px);
  }
}

@keyframes wave-float-2 {
  0%,
  100% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(20px) translateY(-12px);
  }
}

@keyframes wave-float-3 {
  0%,
  100% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(-15px) translateY(-10px);
  }
}

/* Responsive wave heights */
@media (max-width: 768px) {
  .wave-svg {
    height: 40px;
  }

  div[style*="background-color: var(--bg-dark)"] {
    padding-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .wave-svg {
    height: 80px;
  }

  div[style*="background-color: var(--bg-dark)"] {
    padding-bottom: 100px;
  }
}

/* Typewriter Effect */
.typewriter-word {
  position: relative;
  color: var(--accent-color);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Prevent layout shifts */
  overflow: hidden;
  white-space: nowrap;
  /* Ensure consistent baseline */
  line-height: 1.2;
  /* Prevent content from affecting layout */
  box-sizing: border-box;
}

.typewriter-word::after {
  content: "|";
  position: absolute;
  right: -0.05em;
  top: 0;
  color: var(--accent-color);
  animation: blink 1s infinite;
  font-weight: 300;
  font-size: 0.9em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Ensure cursor doesn't affect layout */
  width: 0;
  overflow: visible;
}

.typewriter-word.typing::after {
  animation: blink 0.7s infinite;
}

/* Smooth character transitions - removed to prevent layout shifts */

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ===== OPTIMIZACIONES AVANZADAS CRO ===== */

/* 1. MICRO-ANIMACIONES Y EFECTOS VISUALES */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay progresivo para cards */
.benefit-card:nth-child(1) {
  transition-delay: 0.1s;
}
.benefit-card:nth-child(2) {
  transition-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  transition-delay: 0.3s;
}
.benefit-card:nth-child(4) {
  transition-delay: 0.4s;
}

.service-detailed-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-detailed-card:nth-child(2) {
  transition-delay: 0.2s;
}
.service-detailed-card:nth-child(3) {
  transition-delay: 0.3s;
}
.service-detailed-card:nth-child(4) {
  transition-delay: 0.4s;
}
.service-detailed-card:nth-child(5) {
  transition-delay: 0.5s;
}
.service-detailed-card:nth-child(6) {
  transition-delay: 0.6s;
}

/* Hover Effects Premium */
.service-detailed-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink), 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.benefit-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-pink), 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Efecto ripple en botones */
.cta-primary,
.service-cta {
  position: relative;
  overflow: hidden;
}

.cta-primary::before,
.service-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-primary:active::before,
.service-cta:active::before {
  width: 300px;
  height: 300px;
}

/* Animación de pulso para elementos importantes */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
  }
}

.pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* 2. ELEMENTOS DE URGENCIA Y ESCASEZ */
.urgency-bar {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 600;
  font-size: 0.95rem;
}

.urgency-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

.urgency-timer {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Social Proof Popup */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  max-width: 280px;
}

.social-proof-popup.show {
  transform: translateX(0);
}

.popup-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.popup-text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.4;
}

.popup-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.popup-text small {
  color: var(--text-light);
}

/* 3. PRUEBA SOCIAL DINÁMICA */
.live-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: var(--accent-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  height: auto;
  display: block !important;
}

.testimonials-carousel .testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
  display: block !important;
  margin: 0 auto;
}

.testimonials-carousel .testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonials-carousel .testimonial-slide.prev {
  transform: translateX(-100%);
  position: absolute;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* 4. FORMULARIO INTELIGENTE */
.smart-form .step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.smart-form .step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-progress {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

.form-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.3s ease;
}

.next-step {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 5. GAMIFICACIÓN */
.benefit-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.badge-popular {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.badge-recommended {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

/* 6. MÓVIL OPTIMIZADO */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  padding: 15px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.mobile-sticky-cta .cta-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-sticky-cta .cta-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* 7. ELEMENTOS DE CONFIANZA */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.trust-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.trust-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .urgency-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .live-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .trust-indicators {
    gap: 15px;
  }

  .social-proof-popup {
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

/* ========================================
   BEFORE/AFTER COMPARISON SLIDER
======================================== */

.before-after-slider {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    var(--bg-light) 0%,
    var(--bg-secondary) 50%,
    var(--bg-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.before-after-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(236, 72, 153, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(217, 70, 239, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  pointer-events: all;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.slider-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(252, 231, 243, 0.9) 100%
  );
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 12px 48px rgba(236, 72, 153, 0.25),
    0 8px 24px rgba(217, 70, 239, 0.15), 0 0 0 4px rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.3);
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(236, 72, 153, 0.1) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-btn:hover::before {
  opacity: 1;
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.prev-btn {
  margin-left: 0;
}

.next-btn {
  margin-right: 0;
}

/* Slider Track */
.slider-track {
  position: relative;
  width: 100%;
  min-height: 600px; /* Altura mínima para evitar colapso */
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Comparison Container */
.comparison-container {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(236, 72, 153, 0.04);
  margin: 30px 0;
  position: relative;
}

.comparison-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.02) 0%,
    transparent 50%,
    rgba(217, 70, 239, 0.02) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: ew-resize;
}

/* Before and After Sections */
.before-section,
.after-section {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.before-section {
  left: 0;
  clip-path: inset(0 50% 0 0);
}

.after-section {
  right: 0;
  clip-path: inset(0 0 0 50%);
}

.before-section img,
.after-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image Labels */
.image-label {
  position: absolute;
  top: 24px;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.before-label {
  left: 24px;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.95) 0%,
    rgba(220, 38, 38, 0.9) 100%
  );
  color: white;
}

.after-label {
  right: 24px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.95) 0%,
    rgba(22, 163, 74, 0.9) 100%
  );
  color: white;
}

.image-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; /* Área más amplia para interacción */
  background: transparent;
  cursor: ew-resize;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px; /* Centrar la línea de 6px en el área de 40px */
}

/* Área de interacción visual en hover */
.slider-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border: 2px dashed rgba(236, 72, 153, 0.3);
}

.slider-handle:hover::before {
  opacity: 1;
}

/* Indicador de arrastre */
.slider-handle::after {
  content: "↔";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(236, 72, 153, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.slider-handle:hover::after {
  opacity: 1;
  top: -35px;
}

.handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(
    to bottom,
    rgba(236, 72, 153, 0.9) 0%,
    rgba(217, 70, 239, 0.95) 30%,
    rgba(168, 85, 247, 0.9) 70%,
    rgba(236, 72, 153, 0.9) 100%
  );
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.4), 0 0 40px rgba(217, 70, 239, 0.2);
  border-radius: 3px;
  transition: all 0.3s ease;
  pointer-events: none; /* La línea no interfiere con los eventos del handle */
}

.slider-handle:hover .handle-line {
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 0 60px rgba(217, 70, 239, 0.4),
    0 0 90px rgba(168, 85, 247, 0.2);
  transform: scaleX(1.2);
}

/* Estado activo cuando se está arrastrando */
.slider-handle:active .handle-line {
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.8), 0 0 80px rgba(217, 70, 239, 0.6),
    0 0 120px rgba(168, 85, 247, 0.4);
  transform: scaleX(1.3);
}

.slider-handle:active::before {
  opacity: 0.3;
  background: rgba(236, 72, 153, 0.2);
}

.handle-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.handle-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.handle-circle:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 48px rgba(236, 72, 153, 0.3),
    0 8px 24px rgba(217, 70, 239, 0.2), 0 0 0 6px rgba(236, 72, 153, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.6);
  border-color: var(--secondary-color);
}

.handle-circle:hover::before {
  opacity: 1;
}

/* Treatment Info */
.treatment-info {
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(253, 242, 248, 0.8) 100%
  );
  position: relative;
  z-index: 2;
}

.treatment-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.treatment-info p {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 1rem;
}

.treatment-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.treatment-badges .badge {
  background: var(--gradient-romantic);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Slider Dots */
.slider-dots {
  display: none; /* Ocultar cuando solo hay un slide */
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  width: 100%;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(236, 72, 153, 0.3);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-color: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.dot.active::before {
  opacity: 0;
}

.dot:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.dot:hover::before {
  opacity: 1;
}

/* Results Disclaimer */
.results-disclaimer {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(236, 72, 153, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.results-disclaimer p {
  color: var(--text-medium);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

/* Comparison CTA */
.comparison-cta {
  text-align: center;
  margin-top: 50px;
  padding: 50px 30px;
  background: linear-gradient(
    135deg,
    var(--gradient-soft) 0%,
    rgba(252, 231, 243, 0.8) 50%,
    var(--gradient-soft) 100%
  );
  border-radius: 28px;
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(236, 72, 153, 0.1);
}

.comparison-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(236, 72, 153, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(217, 70, 239, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.comparison-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.comparison-cta p {
  color: var(--text-medium);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.comparison-cta .cta-primary {
  background: var(--gradient-sunset);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  text-align: center;
}

.comparison-cta .cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.comparison-cta .cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.3),
    0 8px 24px rgba(217, 70, 239, 0.2);
}

.comparison-cta .cta-primary:hover::before {
  left: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .slider-container {
    padding: 0 10px;
  }

  .slider-track {
    min-height: 500px; /* Altura reducida para tablet */
  }

  .slider-nav {
    left: 10px;
    right: 10px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
  }

  .handle-circle {
    width: 42px;
    height: 42px;
  }

  .image-label {
    top: 20px;
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .before-label {
    left: 20px;
  }

  .after-label {
    right: 20px;
  }

  .comparison-wrapper {
    height: 400px;
  }

  .handle-circle {
    width: 35px;
    height: 35px;
  }

  .treatment-info {
    padding: 20px;
  }

  .treatment-info h3 {
    font-size: 1.25rem;
  }

  .treatment-badges {
    justify-content: center;
  }

  .treatment-badges .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .comparison-cta {
    padding: 30px 15px;
  }

  .comparison-cta h3 {
    font-size: 1.5rem;
  }

  .comparison-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .slider-track {
    min-height: 450px; /* Altura reducida para mobile */
  }

  .slider-nav {
    left: 5px;
    right: 5px;
  }

  .comparison-wrapper {
    height: 350px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .handle-circle {
    width: 38px;
    height: 38px;
  }

  .comparison-cta {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .comparison-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .comparison-cta p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .comparison-cta .cta-primary {
    padding: 16px 28px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    width: auto;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .image-label {
    font-size: 0.7rem;
    padding: 6px 12px;
    top: 16px;
  }

  .before-label {
    left: 16px;
  }

  .after-label {
    right: 16px;
  }

  .treatment-info {
    padding: 30px 20px;
  }

  .treatment-info h3 {
    font-size: 1.25rem;
  }

  .treatment-badges .badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}
