/* Estilos específicos para página de masaje erótico */

/* Header mejorado y fixed */
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.95) 0%, rgba(45, 27, 61, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 74, 156, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(139, 74, 156, 0.15);
}

.header.scrolled {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.98) 0%, rgba(45, 27, 61, 0.98) 100%);
  box-shadow: 0 8px 40px rgba(139, 74, 156, 0.25);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Logo mejorado */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo:hover img {
  border-color: var(--accent-light);
  box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
}

/* Navigation mejorada */
.nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 15px;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
  background: rgba(139, 74, 156, 0.1);
}

.nav a:hover::before {
  width: 80%;
}

.nav i {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Botones de contacto en header */
.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-contact .btn-contact {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  color: white;
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Menu toggle mejorado */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  transition: var(--transition);
  position: relative;
}

.menu-toggle:hover {
  background: var(--surface-light);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Floating buttons mejorados */
.whatsapp-float,
.telegram-float {
  position: fixed;
  bottom: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.whatsapp-float {
  right: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.telegram-float {
  right: 110px;
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
}

.whatsapp-float:hover,
.telegram-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.whatsapp-text,
.telegram-text {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text,
.telegram-float:hover .telegram-text {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse {
  0% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to top mejorado */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(139, 74, 156, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 74, 156, 0.4);
}

/* Responsive Header */
@media (max-width: 768px) {
  .header-content {
    padding: 12px 20px;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(26, 11, 46, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 74, 156, 0.2);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 1100;
    box-shadow: 0 8px 30px rgba(139, 74, 156, 0.2);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav:not(.open) {
    display: none;
  }
  
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  
  .nav li {
    width: 100%;
    border-bottom: 1px solid rgba(139, 74, 156, 0.1);
  }
  
  .nav a {
    padding: 15px 30px;
    justify-content: flex-start;
    width: 100%;
    border-radius: 0;
  }
  
  .header-contact {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }

  /* Mobile menu functionality - ya definido arriba */

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -5px);
  }
  
  /* Mobile floating buttons */
  .whatsapp-float,
  .telegram-float {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
  
  .whatsapp-float {
    right: 20px;
    bottom: 120px;
  }
  
  .telegram-float {
    right: 20px;
    bottom: 190px;
  }
  
  .whatsapp-text,
  .telegram-text {
    right: 65px;
    font-size: 0.8rem;
  }
  
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  .header,
  .nav,
  .menu-toggle span,
  .whatsapp-float,
  .telegram-float,
  .back-to-top {
    transition: none;
  }
  
  .whatsapp-float,
  .telegram-float {
    animation: none;
  }
}

/* Critical loading improvements */
.header {
  contain: layout style paint;
  will-change: transform, background;
}

.nav {
  contain: layout style;
}

.whatsapp-float,
.telegram-float {
  contain: layout style paint;
  will-change: transform;
}

/* Tipografía mejorada global */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-accent: 'Playfair Display', serif;
}

body {
  font-family: var(--font-primary) !important;
  font-weight: 400;
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  font-family: var(--font-display) !important;
  font-weight: 600;
}

h4, h5, h6 {
  font-family: var(--font-primary) !important;
  font-weight: 600;
}

/* Hero épico con animaciones */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 30%, #8b4a9c 70%, #f39c12 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 74, 156, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: gradient-shift 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes gradient-shift {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: rotate(5deg) scale(1.05);
    opacity: 0.9;
  }
}

/* Partículas flotantes */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(243, 156, 18, 0.8) 0%, transparent 2%),
    radial-gradient(circle at 80% 80%, rgba(139, 74, 156, 0.6) 0%, transparent 2%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 2%),
    radial-gradient(circle at 90% 10%, rgba(243, 156, 18, 0.5) 0%, transparent 2%),
    radial-gradient(circle at 30% 90%, rgba(139, 74, 156, 0.7) 0%, transparent 2%);
  animation: particles-float 15s linear infinite;
  z-index: 1;
}

@keyframes particles-float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  animation: hero-entrance 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

@keyframes hero-entrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f39c12 0%, #f7dc6f 30%, #ffffff 60%, #f39c12 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-shimmer 3s ease-in-out infinite alternate,
             title-bounce 2s ease-in-out infinite alternate;
  line-height: 1.1;
  text-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
  position: relative;
}

@keyframes title-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes title-bounce {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-5px) scale(1.02); }
}

.hero-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(243, 156, 18, 0.3), rgba(139, 74, 156, 0.3));
  border-radius: 20px;
  z-index: -1;
  filter: blur(20px);
  animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

.hero-title .accent {
  color: #f39c12;
  display: block;
  font-style: italic;
  transform: rotate(-2deg);
  margin-top: -10px;
}

/* Hero subtitle container con decoraciones */
.hero-subtitle-container {
  position: relative;
  margin-bottom: 40px;
  animation: subtitle-fade 2s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes subtitle-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decoración superior */
.subtitle-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.decoration-icon {
  display: flex;
  gap: 20px;
  align-items: center;
}

.flame-icon {
  color: #e74c3c;
  font-size: 1.8rem;
  animation: flame-dance 2s ease-in-out infinite alternate;
}

.heart-icon {
  color: #ff6b9d;
  font-size: 2rem;
  animation: heart-beat 1.5s ease-in-out infinite;
}

.star-icon {
  color: #f39c12;
  font-size: 1.6rem;
  animation: star-twinkle 2.5s ease-in-out infinite;
}

@keyframes flame-dance {
  0% { transform: scale(1) rotate(-2deg); opacity: 0.8; }
  100% { transform: scale(1.1) rotate(2deg); opacity: 1; }
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes star-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Subtitle mejorado */
.hero-subtitle {
  font-family: var(--font-primary) !important;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Destacados en el texto */
.subtitle-highlight {
  color: #f39c12;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(243, 156, 18, 0.6);
}

.subtitle-accent {
  color: #e74c3c;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.6);
}

.subtitle-power {
  color: #9b59b6;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(155, 89, 182, 0.6);
}

.subtitle-emphasis {
  color: #ff6b9d;
  font-weight: 600;
  font-style: italic;
  text-shadow: 0 0 10px rgba(255, 107, 157, 0.6);
}

/* Ornamento inferior */
.subtitle-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.ornament-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.7;
}

.lotus-icon {
  color: var(--accent);
  font-size: 1.4rem;
  animation: lotus-glow 3s ease-in-out infinite alternate;
}

@keyframes lotus-glow {
  0% { 
    transform: scale(1); 
    opacity: 0.7;
    filter: drop-shadow(0 0 5px rgba(243, 156, 18, 0.5));
  }
  100% { 
    transform: scale(1.1); 
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.8));
  }
}

/* Hero content wrapper con silueta */
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-text-side {
  flex: 1;
}

.hero-silhouette {
  position: relative;
  width: 120px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woman-silhouette {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(243, 156, 18, 0.6));
  animation: silhouette-float 4s ease-in-out infinite alternate;
}

@keyframes silhouette-float {
  0% { 
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 0 20px rgba(243, 156, 18, 0.6));
  }
  100% { 
    transform: translateY(-10px) rotate(2deg);
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.8));
  }
}

.silhouette-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 200px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.3) 0%, rgba(255, 107, 157, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes glow-pulse {
  0% { 
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% { 
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Botón Conoce Más posicionado después del subtitle */
.btn-discover {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-primary) !important;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
  margin: 30px auto;
  animation: discover-entrance 2.5s ease-out 1.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes discover-entrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-discover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.2) 0%, rgba(139, 74, 156, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-discover:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.3);
}

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

.discover-text {
  position: relative;
  z-index: 2;
}

.discover-arrow {
  position: relative;
  z-index: 2;
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(5px); 
  }
}

.hero-cta {
  margin-top: 30px;
  animation: cta-entrance 2s ease-out 1.5s forwards;
  opacity: 0;
  transform: translateY(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@keyframes cta-entrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero buttons container */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botón secundario para Telegram */
.hero .btn-secondary {
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  color: white;
  border: 2px solid transparent;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: var(--font-primary) !important;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 
    0 10px 30px rgba(0, 136, 204, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero .btn-secondary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(0, 136, 204, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #0077b5 0%, #0088cc 50%, #00aaff 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover::before {
  left: 100%;
}

.hero .btn-secondary i {
  font-size: 1.4rem;
  animation: icon-pulse 2s ease-in-out infinite;
}


/* Botón CTA mejorado */
.hero .btn-primary {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: var(--font-primary) !important;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 
    0 10px 30px rgba(243, 156, 18, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero .btn-primary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(243, 156, 18, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 50%, #f1c40f 100%);
}

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

.hero .btn-primary i {
  font-size: 1.4rem;
  animation: icon-pulse 2s ease-in-out infinite;
}

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

/* Slider de imágenes */
.image-slider {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  margin: 40px 0;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 74, 156, 0.4) 0%, rgba(243, 156, 18, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-text {
  text-align: center;
  color: white;
  max-width: 500px;
  padding: 0 20px;
}

.slide-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-text p {
  font-size: 1.2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Indicadores del slider */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.6);
}

/* Content section mejorada */
.content-section {
  padding: 60px 0;
  background: var(--background);
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(139, 74, 156, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

/* Links globales mejorados */
a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--accent-light);
}

a:not(.btn-primary):not(.btn-secondary):not(.btn-contact):not(.whatsapp-float):not(.telegram-float)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  transition: width 0.3s ease;
}

a:not(.btn-primary):not(.btn-secondary):not(.btn-contact):not(.whatsapp-float):not(.telegram-float):hover::after {
  width: 100%;
}

/* Content main mejorado con animaciones */
.content-main {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
  padding: 60px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(139, 74, 156, 0.2);
  position: relative;
  overflow: hidden;
  animation: content-entrance 1s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes content-entrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-main::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-decoration 6s ease-in-out infinite alternate;
}

@keyframes float-decoration {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-10px, -10px) rotate(180deg); }
}

.content-main h2 {
  color: var(--accent);
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  animation: title-reveal 1s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes title-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-main h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 2px;
  animation: underline-grow 1s ease-out 1s forwards;
  width: 0;
}

@keyframes underline-grow {
  to { width: 100px; }
}

.content-main h3 {
  color: var(--primary-light);
  font-family: var(--font-display) !important;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 40px 0 25px 0;
  text-align: center;
  position: relative;
  animation: section-fade 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.content-main h3:nth-of-type(even) {
  transform: translateX(30px);
}

@keyframes section-fade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-main h4 {
  color: var(--accent);
  font-family: var(--font-primary) !important;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 40px 0 20px 0;
  text-align: center;
  position: relative;
}

.content-main p {
  margin-bottom: 30px;
  line-height: 2;
  color: var(--text-secondary);
  font-family: var(--font-primary) !important;
  font-size: 1.15rem;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.5px;
  animation: paragraph-fade 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(15px);
}

@keyframes paragraph-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-main p:nth-child(even) {
  animation-delay: 0.1s;
}

.content-main p:nth-child(odd) {
  animation-delay: 0.2s;
}

.content-main strong {
  color: var(--accent);
  font-weight: 700;
  position: relative;
}

.content-main strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.5;
}

/* Listas mejoradas */
.content-main ul {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.content-main li {
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-family: var(--font-primary) !important;
  font-size: 1.1rem;
  font-weight: 400;
  position: relative;
  padding-left: 40px;
  line-height: 1.8;
  animation: list-item-slide 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes list-item-slide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-main li:nth-child(1) { animation-delay: 0.1s; }
.content-main li:nth-child(2) { animation-delay: 0.2s; }
.content-main li:nth-child(3) { animation-delay: 0.3s; }
.content-main li:nth-child(4) { animation-delay: 0.4s; }
.content-main li:nth-child(5) { animation-delay: 0.5s; }
.content-main li:nth-child(6) { animation-delay: 0.6s; }

.content-main li::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.2rem;
  animation: icon-glow 2s ease-in-out infinite alternate;
}

@keyframes icon-glow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* CTA Final Premium */
.final-cta-section {
  position: relative;
  margin: 60px 0 0 0;
  padding: 50px;
  border-radius: var(--border-radius-large);
  background: linear-gradient(135deg, #2d1b3d 0%, #1a0b2e 50%, #8b4a9c 100%);
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(139, 74, 156, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(243, 156, 18, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 107, 157, 0.2) 0%, transparent 50%);
  animation: cta-bg-shift 8s ease-in-out infinite alternate;
}

@keyframes cta-bg-shift {
  0% { transform: rotate(0deg) scale(1); opacity: 0.8; }
  100% { transform: rotate(5deg) scale(1.05); opacity: 1; }
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.6) 0%, transparent 2%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.5) 0%, transparent 2%),
    radial-gradient(circle at 40% 60%, rgba(155, 89, 182, 0.4) 0%, transparent 2%);
  animation: particles-dance 12s linear infinite;
}

@keyframes particles-dance {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-icon-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.cta-fire {
  color: #e74c3c;
  font-size: 2.5rem;
  animation: intense-flame 2s ease-in-out infinite alternate;
}

.cta-heart {
  color: #ff6b9d;
  font-size: 2.8rem;
  animation: passionate-beat 1.2s ease-in-out infinite;
}

@keyframes intense-flame {
  0% { transform: scale(1) rotate(-3deg); filter: brightness(1); }
  100% { transform: scale(1.2) rotate(3deg); filter: brightness(1.3); }
}

@keyframes passionate-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.cta-title {
  font-family: var(--font-display) !important;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-highlight {
  color: #f39c12;
  text-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
}

.cta-accent {
  color: #e74c3c;
  text-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
}

.cta-emphasis {
  color: #ff6b9d;
  font-style: italic;
  text-shadow: 0 0 20px rgba(255, 107, 157, 0.8);
}

.cta-promise {
  margin-bottom: 40px;
}

.promise-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.promise-highlight {
  color: #f39c12;
  font-weight: 700;
  font-style: italic;
}

.promise-guarantee {
  color: #e74c3c;
  font-weight: 800;
  font-size: 1.1em;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.location-badge i {
  color: #f39c12;
  font-size: 1.1rem;
}

.final-contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-final-whatsapp,
.btn-final-telegram {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  min-width: 250px;
}

.btn-final-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-final-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.btn-final-whatsapp:hover,
.btn-final-telegram:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.btn-content {
  flex: 1;
  text-align: left;
}

.btn-label {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-number {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn-action {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta-security i {
  color: #27AE60;
  font-size: 1.1rem;
}

/* Benefits list mejorada */
.benefits-list {
  display: grid;
  gap: 25px;
  margin: 40px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-lighter) 100%);
  border-radius: var(--border-radius);
  border-left: 5px solid var(--accent);
  box-shadow: 0 8px 25px rgba(139, 74, 156, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 74, 156, 0.2);
  border-left-color: var(--accent-light);
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item i {
  color: var(--accent);
  font-size: 2rem;
  margin-top: 5px;
  transition: all 0.4s ease;
}

.benefit-item:hover i {
  color: var(--accent-light);
  transform: scale(1.1);
}

.benefit-item h4 {
  color: var(--primary-light);
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
}

.benefit-item p {
  margin: 0;
  font-size: 1rem;
  text-align: left;
  line-height: 1.7;
}

/* CTA section mejorada */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
  padding: 60px;
  border-radius: var(--border-radius-large);
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-section h4 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Botones mejorados */
.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: var(--primary-dark);
  border: none;
  padding: 18px 35px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 33px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Sidebar mejorada */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.sidebar-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(139, 74, 156, 0.1);
  transition: all 0.4s ease;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(139, 74, 156, 0.3);
}

.sidebar-card h4 {
  color: var(--accent);
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

/* Servicios relacionados mejorados */
.services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-list li {
  margin-bottom: 0;
}

.services-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  padding: 15px 20px;
  border-radius: 15px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-lighter) 100%);
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary) !important;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(139, 74, 156, 0.1);
}

.services-list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.2), transparent);
  transition: left 0.6s ease;
}

.services-list a:hover {
  color: var(--accent);
  background: linear-gradient(135deg, var(--surface-lighter) 0%, var(--primary) 100%);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 74, 156, 0.3);
}

.services-list a:hover::before {
  left: 100%;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(26, 11, 46, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 74, 156, 0.2);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 1100;
    box-shadow: 0 8px 30px rgba(139, 74, 156, 0.2);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav:not(.open) {
    display: none;
  }
  
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  
  .nav li {
    width: 100%;
    border-bottom: 1px solid rgba(139, 74, 156, 0.1);
  }
  
  .nav a {
    padding: 15px 30px;
    justify-content: flex-start;
    width: 100%;
    border-radius: 0;
  }
  
  .header-contact {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }

  /* Mobile menu functionality - ya definido arriba */

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -5px);
  }
}

/* Mobile-First Responsive optimizado */
@media (max-width: 768px) {
  /* Hero móvil */
  .hero {
    min-height: 90vh;
    padding: 50px 0 25px 0;
  }
  
  /* Hero content con efectos solo en móvil */
  .hero-content {
    padding: 30px 20px;
    background: rgba(26, 11, 46, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(139, 74, 156, 0.3);
    box-shadow: 
      0 15px 40px rgba(139, 74, 156, 0.3),
      0 5px 20px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  
  /* Content section móvil optimizado */
  .content-section {
    padding: 40px 0;
  }
  
  /* Contact section móvil optimizado */  
  .contact-section {
    padding: 40px 0;
  }
  
  .hero-title {
    line-height: 1.1;
    margin-bottom: 25px;
  }
  
  .hero-title .accent {
    transform: rotate(-1deg);
    margin-top: -5px;
  }
  
  .hero-subtitle-container {
    margin-bottom: 25px;
  }
  
  .subtitle-decoration {
    margin-bottom: 20px;
  }
  
  .decoration-icon {
    gap: 15px;
  }
  
  .flame-icon {
    font-size: 1.5rem;
  }
  
  .heart-icon {
    font-size: 1.7rem;
  }
  
  .star-icon {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem !important;
    line-height: 1.6;
    text-align: center;
  }
  
  .subtitle-ornament {
    margin-top: 20px;
    gap: 10px;
  }
  
  .ornament-line {
    width: 40px;
  }
  
  .lotus-icon {
    font-size: 1.2rem;
  }
  
  /* Silueta móvil */
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .hero-silhouette {
    width: 80px;
    height: 120px;
    margin: 0 auto;
  }
  
  .silhouette-glow {
    width: 100px;
    height: 140px;
  }
  
  /* CTA Final móvil */
  .final-cta-section {
    padding: 30px 20px;
    margin: 40px 0 0 0;
  }
  
  .cta-icon-container {
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .cta-fire {
    font-size: 2rem;
  }
  
  .cta-heart {
    font-size: 2.2rem;
  }
  
  .cta-title {
    font-size: 2rem !important;
    margin-bottom: 25px;
  }
  
  .promise-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .location-badge {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .final-contact-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn-final-whatsapp,
  .btn-final-telegram {
    width: 100%;
    max-width: 280px;
    min-width: unset;
    padding: 18px 20px;
  }
  
  .btn-icon {
    font-size: 1.5rem;
  }
  
  .btn-label {
    font-size: 1rem;
  }
  
  .btn-number {
    font-size: 0.85rem;
  }
  
  .btn-action {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .cta-security {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .hero .btn-primary,
  .hero .btn-secondary {
    padding: 18px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }
  
  .btn-discover {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    margin-top: 10px;
  }
  
  /* Slider móvil */
  .image-slider {
    height: 280px;
    margin: 30px 0;
    border-radius: 20px;
  }
  
  .slide-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .slide-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .slider-indicators {
    bottom: 15px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
  
  /* Content móvil */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  
  .content-main {
    padding: 25px;
    border-radius: 20px;
  }
  
  .content-main h2 {
    font-size: 2.5rem !important;
    margin-bottom: 30px;
  }
  
  .content-main h3 {
    font-size: 1.8rem !important;
    margin: 40px 0 20px 0;
  }
  
  .content-main h4 {
    font-size: 1.4rem !important;
    margin: 30px 0 15px 0;
  }
  
  .content-main p {
    font-size: 1rem !important;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .content-main li {
    font-size: 1rem !important;
    padding-left: 35px;
    margin-bottom: 12px;
  }
  
  .content-main li::before {
    font-size: 1rem;
  }
  
  /* Benefits móvil */
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .benefit-item i {
    font-size: 2.5rem !important;
    margin-bottom: 15px;
    margin-top: 0;
  }
  
  .benefit-item h4 {
    font-size: 1.3rem !important;
    margin-bottom: 10px;
  }
  
  .benefit-item p {
    font-size: 0.95rem !important;
    text-align: center;
  }
  
  /* CTA móvil */
  .cta-section {
    padding: 30px 20px;
    border-radius: 20px;
    margin: 40px 0;
  }
  
  .cta-section h4 {
    font-size: 1.6rem !important;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    font-size: 1rem !important;
    margin-bottom: 25px;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
    font-size: 1rem;
    justify-content: center;
    border-radius: 25px;
  }
  
  /* Sidebar móvil */
  .sidebar-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .sidebar-card h4 {
    font-size: 1.3rem !important;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 0.95rem;
    justify-content: center;
    text-align: center;
  }
  
  .services-list a {
    font-size: 0.95rem;
    padding: 12px 15px;
    text-align: center;
    border-radius: 10px;
  }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid rgba(139, 74, 156, 0.2);
}

.contact-section h3 {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

.contact-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-buttons .btn-final-whatsapp,
.contact-buttons .btn-final-telegram {
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-buttons .btn-final-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.contact-buttons .btn-final-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #005580 100%);
  color: white;
}

.contact-buttons .btn-final-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.contact-buttons .btn-final-telegram:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
}
  
  /* Performance móvil */
  .hero::after {
    animation-duration: 20s; /* Slower on mobile */
  }
  
  .content-main::before {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
  }
  
  /* Reduce motion on mobile if preferred */
  @media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .content-main::before,
    .hero-title,
    .hero-subtitle,
    .hero-cta,
    .content-main h2,
    .content-main h3,
    .content-main p,
    .content-main li,
    .benefit-item {
      animation: none !important;
    }
    
    .hero-content,
    .content-main,
    .content-main h2,
    .content-main h3,
    .content-main p,
    .content-main li,
    .benefit-item {
      opacity: 1 !important;
      transform: none !important;
    }
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  
  .hero-subtitle {
    font-size: 1.1rem !important;
  }
  
  .content-main h2 {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }
  
  /* Optimización táctil para móviles */
  .btn-final-whatsapp,
  .btn-final-telegram,
  .btn-primary,
  .btn-secondary {
    min-height: 48px;
    min-width: 200px;
    padding: 15px 25px;
    font-size: 1.1rem;
  }
  
  /* Menu toggle más grande para táctil */
  .menu-toggle {
    width: 48px;
    height: 48px;
  }
  
  /* Nav links más grandes para táctil */
  .nav a {
    padding: 18px 30px;
    font-size: 1.1rem;
  }
}
  
  .content-main {
    padding: 20px;
  }
  
  .content-main h2 {
    font-size: 2.2rem !important;
  }
  
  .content-main h3 {
    font-size: 1.6rem !important;
  }
  
  .benefit-item {
    padding: 20px 15px;
  }
  
  .cta-section {
    padding: 25px 15px;
  }
  
  .sidebar-card {
    padding: 20px 15px;
  }
}

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

.content-main > * {
  animation: fadeInUp 0.8s ease forwards;
}

.benefit-item {
  animation: fadeInUp 0.8s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }