/* Modern MakeFlow Styles - Enhanced Design */

/* Variables */
:root {
  /* Colors */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --secondary-dark: #7c3aed;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  
  /* Neutrals */
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --gray-lighter: #cbd5e1;
  --white: #ffffff;
  --white-soft: #f8fafc;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-spring: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--gray);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3f3 0%, #f3f4ff 50%, #f9f3ff 100%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  top: -200px;
  left: -200px;
}

.orb-2 {
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  bottom: -300px;
  right: -300px;
  animation-delay: 5s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #10b981, #34d399);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.05); }
  50% { transform: translate(-15px, 15px) scale(0.98); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  mix-blend-mode: multiply;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
}

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

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: var(--gray);
  font-weight: 500;
  transition: var(--transition-base);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

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

.nav-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition-base);
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn i {
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  position: relative;
  display: flex;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.badge-pulse {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-description {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  color: var(--primary);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-trusted {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.trusted-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.trusted-stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.875rem;
}

.trusted-stat-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.trusted-stat-item strong {
  color: var(--dark);
  font-weight: 600;
}

.trusted-logos-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--gray);
  font-size: 0.875rem;
}

.trusted-logos {
  display: flex;
  gap: 1.5rem;
  opacity: 0.5;
  filter: grayscale(100%);
}

.trusted-logos img {
  height: 50px;
  width: auto;
}

.trusted-logo-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}

.trusted-logo-instagram svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
  color: var(--gray);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}


.dashboard-preview {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--gradient-primary);
  filter: blur(100px);
  opacity: 0.3;
  z-index: 0;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-card 3s ease-in-out infinite;
  z-index: 10;
}

.floating-card i {
  color: var(--primary);
  font-size: 1.25rem;
}

.floating-card span {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}

.card-1 {
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -3%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 5%;
  left: -3%;
  animation-delay: 2s;
}

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

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-glow);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Features */
.features {
  background: var(--white-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

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

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon svg[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: gap var(--transition-base);
}

.feature-link:hover {
  gap: 0.75rem;
}

/* Analytics Showcase */
.analytics-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-soft) 100%);
}

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

.analytics-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.analytics-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.analytics-feature i,
.analytics-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  color: var(--primary);
  flex-shrink: 0;
}

.analytics-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analytics-feature h4 {
  margin-bottom: 0.25rem;
  color: var(--dark);
  font-size: 1.125rem;
}

.analytics-feature p {
  color: var(--gray);
  font-size: 0.875rem;
}

.analytics-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.stat-box-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-box-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--gray);
}

.analytics-visual {
  position: relative;
}

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

.analytics-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}

.card-chart {
  grid-column: span 2;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.trend-up {
  color: #10b981;
  font-weight: 600;
}

.mini-chart {
  height: 60px;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

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

.card-metric i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--gray);
}

.card-full {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
}

.analytics-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--white-soft);
}

/* QR Comunicaciones Showcase */
.qr-comunicaciones-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--white-soft) 0%, var(--white) 100%);
}

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

.qr-comunicaciones-visual {
  position: relative;
}

.qr-comunicaciones-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all var(--transition-base);
}

.qr-comunicaciones-image-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.qr-comunicaciones-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--white-soft);
  transition: transform var(--transition-base);
}

.qr-comunicaciones-overlay {
  display: none;
}

.qr-comunicaciones-image-container:hover .qr-comunicaciones-img {
  transform: scale(1.02);
  filter: brightness(0.95);
}

.qr-comunicaciones-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.qr-comunicaciones-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.qr-comunicaciones-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  color: var(--primary);
  flex-shrink: 0;
}

.qr-comunicaciones-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qr-comunicaciones-feature h4 {
  margin-bottom: 0.25rem;
  color: var(--dark);
  font-size: 1.125rem;
}

.qr-comunicaciones-feature p {
  color: var(--gray);
  font-size: 0.875rem;
}

.qr-comunicaciones-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .qr-comunicaciones-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .qr-comunicaciones-visual {
    order: 1;
  }
  
  .qr-comunicaciones-text {
    order: 2;
  }
  
  .qr-comunicaciones-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .qr-comunicaciones-showcase {
    padding: 4rem 0;
  }
  
  .qr-comunicaciones-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .qr-comunicaciones-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Easy Management Section */
.easy-management {
  padding: 6rem 0;
  background: var(--white-soft);
}

.easy-management-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.easy-management-text h2 {
  margin-bottom: 3rem;
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: var(--radius-md);
  color: #10b981;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.benefit-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1rem;
}

.easy-management-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.panel-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: var(--shadow-xl);
  background: transparent;
  padding: 0;
  max-width: 100%;
}

.panel-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
}

.panel-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  max-width: 100%;
}

.panel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
}

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

/* Social Media Logos */
.social-logos {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.social-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-logo svg {
  width: 28px;
  height: 28px;
}

.facebook-logo {
  background: #1877F2;
  color: white;
}

.facebook-logo svg {
  fill: white;
}

.instagram-logo {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.instagram-logo svg {
  fill: white;
}

.google-logo {
  background: white;
  color: white;
}

.google-logo svg {
  width: 32px;
  height: 32px;
}

/* Features Showcase */
.features-showcase {
  padding: 6rem 0;
  background: var(--white-soft);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

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

.showcase-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
  border-radius: var(--radius-md);
}

.showcase-card:hover .showcase-card-img {
  transform: scale(1.03);
}

.showcase-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--primary);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.showcase-card:hover .showcase-card-badge {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-primary);
  color: var(--white);
}

.showcase-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.showcase-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1.3;
}

.showcase-card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  flex: 1;
}

.showcase-card-image {
  cursor: pointer;
  position: relative;
}

.showcase-card-zoom-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
}

.showcase-card-image:hover .showcase-card-zoom-hint {
  opacity: 1;
}

.showcase-card-zoom-hint i {
  font-size: 1rem;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 2rem;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  animation: modalImageZoomIn var(--transition-slow);
}

@keyframes modalImageZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 3001;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.image-modal-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}

.image-modal-close i {
  font-size: 0;
  color: transparent;
  display: block;
  line-height: 1;
  width: 18px;
  height: 18px;
  position: relative;
  font-style: normal;
}

/* Crear la X directamente con CSS */
.image-modal-close i::before,
.image-modal-close i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transform-origin: center;
}

.image-modal-close i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.image-modal-close i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-title {
  margin-top: 1.5rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

/* How It Works */
.how-it-works {
  background: var(--white-soft);
  padding: 6rem 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all var(--transition-base);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 2rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.step-card p {
  color: var(--gray);
  line-height: 1.6;
}

.step-connector {
  display: none;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  color: var(--gray);
  font-weight: 500;
}

.toggle {
  position: relative;
  width: 60px;
  height: 32px;
}

.toggle input {
  display: none;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gray-lighter);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  bottom: 4px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition-base);
}

.toggle input:checked + .toggle-slider {
  background: var(--gradient-primary);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(28px);
}

.discount-badge {
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-base);
}

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

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--gray);
  font-size: 0.875rem;
}

.plan-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--gray);
  vertical-align: top;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
}

.price-period {
  color: var(--gray);
  font-size: 1rem;
}

.price-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--gray);
}

.plan-features li i {
  color: var(--primary);
  font-size: 1.125rem;
}

.plan-features li.disabled {
  opacity: 0.5;
}

.plan-features li.disabled i {
  color: var(--gray-light);
}

/* Testimonials */
.testimonials {
  background: var(--white-soft);
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  stroke: #fbbf24;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.author-role {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.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 30s linear infinite;
}

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

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

.cta-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-title .gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.cta-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-base);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cta-input:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.btn-cta {
  background: var(--white);
  color: var(--primary);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.cta-feature i {
  color: #10b981;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-description {
  line-height: 1.8;
  color: var(--gray-light);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--gray-light);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

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

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  color: var(--gray-light);
  padding: 0.5rem 0;
  transition: var(--transition-base);
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(5px);
}

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

.footer-bottom p {
  color: var(--gray-light);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: var(--gray-light);
  transition: var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  z-index: 100;
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.back-to-top i {
  font-size: 0;
  color: transparent;
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  font-style: normal;
}

/* Crear la flecha hacia arriba con CSS */
.back-to-top i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid var(--white);
}

.back-to-top i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 2rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn var(--transition-slow);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--gray-lighter);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
}

.modal-close:hover {
  background: var(--gray);
  color: var(--white);
}

.modal-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.modal-header h3 {
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--gray);
}

/* Form */
.demo-form {
  padding: 0 2rem 2rem;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-lighter);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--gray);
  font-size: 0.875rem;
}

.checkbox-label input {
  width: auto;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-success {
  display: none;
  padding: 2rem;
  text-align: center;
  animation: fadeIn var(--transition-base);
}

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

.form-success i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.form-success h4 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  transition: left var(--transition-base);
  padding: 2rem;
  overflow-y: auto;
}


.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-link {
  padding: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mobile-link:hover {
  background: var(--gray-lighter);
  color: var(--dark);
}

.btn-mobile {
  margin-top: 1rem;
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .easy-management-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .easy-management-text h2 {
    text-align: center;
  }
  
  .analytics-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .analytics-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  /* Mejorar contraste del fondo en móvil */
  .animated-bg {
    background: linear-gradient(135deg, #e8eaf6 0%, #e3e7f5 50%, #ede7f6 100%);
  }
  
  .gradient-orb {
    opacity: 0.8;
  }
  
  .orb-1 {
    opacity: 0.7;
  }
  
  .orb-2 {
    opacity: 0.7;
  }
  
  .orb-3 {
    opacity: 0.7;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-container {
    padding: 0.75rem 0;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .hero {
    padding: 5rem 0 2rem;
    min-height: auto;
  }
  
  .hero-container {
    gap: 2rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .card-1,
  .card-2,
  .card-3 {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .stat-item {
    width: 100%;
    justify-content: flex-start;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  
  .stat-value {
    font-size: 1.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .btn-large {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .trusted-logos-wrapper {
    font-size: 0.75rem;
  }
  
  .trusted-logos {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .trusted-logos img {
    height: 40px;
  }
  
  .trusted-logo-instagram {
    width: 40px;
    height: 40px;
  }
  
  .trusted-logo-instagram svg {
    width: 40px;
    height: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
    box-shadow: var(--shadow-lg);
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .showcase-card-content {
    padding: 1.25rem;
  }
  
  .showcase-card-content h3 {
    font-size: 1.125rem;
  }
  
  .showcase-card-content p {
    font-size: 0.9rem;
  }
  
  .showcase-card-badge {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .showcase-card-image {
    padding: 0.75rem;
  }
  
  .showcase-card {
    border-radius: var(--radius-md);
  }
  
  .image-modal {
    padding: 1rem;
  }
  
  .image-modal-close {
    top: -2.25rem;
    width: 36px;
    height: 36px;
  }
  
  .image-modal-close i {
    width: 16px;
    height: 16px;
  }
  
  .image-modal-close i::before,
  .image-modal-close i::after {
    width: 14px;
    height: 2px;
  }
  
  .image-modal-title {
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  .showcase-card-zoom-hint {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .showcase-card-zoom-hint span {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .easy-management-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .easy-management-text h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .benefit-item {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon {
    margin: 0 auto;
  }
  
  .analytics-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-box {
    width: 100%;
    padding: 1.25rem;
  }
  
  .analytics-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card-chart,
  .card-full {
    grid-column: span 1;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .social-logos {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .social-logo {
    width: 50px;
    height: 50px;
  }
  
  .social-logo svg {
    width: 24px;
    height: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cta-form {
    flex-direction: column;
  }
  
  .cta-input {
    width: 100%;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .cta-section {
    padding: 3rem 0;
  }
  
  .floating-card {
    display: none;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .back-to-top {
    right: 1.5rem;
    bottom: 5rem;
    width: 44px;
    height: 44px;
  }
  
  .modal-content {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .demo-form {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Aún más contraste en pantallas muy pequeñas */
  .animated-bg {
    background: linear-gradient(135deg, #d1d5e8 0%, #c8cfe5 50%, #d4c8e5 100%);
  }
  
  .gradient-orb {
    opacity: 0.85;
  }
  
  .container {
    padding: 0 var(--spacing-xs);
  }
  
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    gap: 0.75rem;
  }
  
  .stat-value {
    font-size: 1.125rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .price-value {
    font-size: 1.75rem;
  }
  
  .price-currency {
    font-size: 1.25rem;
  }
  
  .plan-name {
    font-size: 1.25rem;
  }
  
  .feature-card h3 {
    font-size: 1.125rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .benefit-content h3 {
    font-size: 1.125rem;
  }
  
  .benefit-content p {
    font-size: 0.9rem;
  }
  
  .cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-label {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .pricing-toggle {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .toggle-label {
    font-size: 0.875rem;
  }
  
  .discount-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .author-name {
    font-size: 0.95rem;
  }
  
  .author-role {
    font-size: 0.8rem;
  }
  
  .footer-logo {
    font-size: 1.125rem;
  }
  
  .footer-logo img {
    width: 32px;
    height: 32px;
  }
  
  .footer-description {
    font-size: 0.875rem;
  }
  
  .footer-column h4 {
    font-size: 0.95rem;
  }
  
  .footer-column a {
    font-size: 0.875rem;
  }
  
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 4.5rem;
    right: 1rem;
  }
  
  .back-to-top i {
    font-size: 1rem;
  }
  
  .mobile-menu {
    width: 85%;
    max-width: 280px;
    padding: 1.5rem;
  }
  
  .mobile-menu-content {
    margin-top: 1.5rem;
  }
  
  .mobile-link {
    padding: 0.625rem;
    font-size: 0.95rem;
  }
  
  .btn-mobile {
    width: 100%;
    margin-top: 0.75rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
  }
  
  .badge-pulse {
    width: 6px;
    height: 6px;
  }
}