* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-400: #22d3ee;
  --green-500: #06b6d4;
  --green-600: #0891b2;
  --green-300: #67e8f9;
  --green-700: #0e7490;
  --black: #000000;
  --gray-900: #111111;
  --gray-800: #1f1f1f;
  --gray-700: #2a2a2a;
  --gray-600: #3a3a3a;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Partículas optimizadas - reducidas de 10 a 5 */
.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--green-400);
  border-radius: 50%;
  animation: particleFloat 20s infinite;
  opacity: 0;
  will-change: transform, opacity;
}

/* Solo 5 partículas con box-shadow reducido */
.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; animation-duration: 15s; box-shadow: 0 0 8px var(--green-400); }
.particle:nth-child(2) { width: 3px; height: 3px; left: 30%; animation-delay: 3s; animation-duration: 18s; box-shadow: 0 0 6px var(--green-500); }
.particle:nth-child(3) { width: 5px; height: 5px; left: 50%; animation-delay: 6s; animation-duration: 20s; box-shadow: 0 0 10px var(--green-400); }
.particle:nth-child(4) { width: 3px; height: 3px; left: 70%; animation-delay: 9s; animation-duration: 16s; box-shadow: 0 0 6px var(--green-300); }
.particle:nth-child(5) { width: 4px; height: 4px; left: 90%; animation-delay: 12s; animation-duration: 19s; box-shadow: 0 0 8px var(--green-500); }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) scale(1.2);
    opacity: 0;
  }
}

/* Grid simplificado - sin animación */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(34, 211, 238, 0.05) 79px, rgba(34, 211, 238, 0.05) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(34, 211, 238, 0.03) 79px, rgba(34, 211, 238, 0.03) 80px);
  opacity: 0.5;
}

/* Borde superior sin animación constante */
.top-border {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--green-400) 50%,
    transparent 100%
  );
  z-index: 5;
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 100;
}

/* Icons */
.icon-sm {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  display: inline-block;
  vertical-align: middle;
}

.icon-md {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.icon-lg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.icon-play {
  width: 48px;
  height: 48px;
  stroke-width: 2;
  color: var(--black);
}

.icon-play-sm {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  color: var(--black);
}

.star-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: var(--green-400);
}

.star-icon.filled {
  fill: var(--green-400);
}

.inline {
  vertical-align: middle;
  margin-right: 6px;
}

.arrow-icon {
  width: 48px;
  height: 48px;
  color: var(--green-400);
  stroke-width: 2;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Background simplificado */
.gradient-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 20%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
    var(--black);
  z-index: 1;
}

/* Rayos de luz - SIN animación de rotación */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 50% 50%, 
    transparent 0deg,
    rgba(34, 211, 238, 0.03) 60deg,
    transparent 120deg,
    rgba(6, 182, 212, 0.03) 180deg,
    transparent 240deg,
    rgba(34, 211, 238, 0.03) 300deg,
    transparent 360deg
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 100;
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

/* Aura estática - sin animación */
.hero-content::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.fade-in {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Gradiente simplificado - sin animación */
.gradient-text {
  background: linear-gradient(135deg, 
    #67e8f9 0%, 
    #22d3ee 50%,
    #06b6d4 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-300);
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeIn 1.2s ease-out 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cta-button, .whatsapp-button-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  color: var(--black);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 22px 48px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.4);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo optimizado */
.cta-button::before, .whatsapp-button-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.cta-button:hover::before, .whatsapp-button-large:hover::before {
  transform: translateX(100%);
}

.cta-button:hover, .whatsapp-button-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 100;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
  width: 28px;
  height: 46px;
  border: 2px solid var(--green-400);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 12px;
  background: var(--green-400);
  border-radius: 2px;
  animation: wheelScroll 2s infinite;
}

@keyframes wheelScroll {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.5; transform: translateY(8px); }
}

/* Demo Section */
.demo-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  background: var(--black);
}

.video-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 80px;
}

/* Glow reducido sin blur pesado */
.video-glow {
  position: absolute;
  inset: -6px;
  background: var(--green-400);
  border-radius: 24px;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.video-container:hover .video-glow {
  opacity: 0.4;
}

.video-wrapper {
  position: relative;
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid rgba(34, 211, 238, 0.3);
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  position: relative;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.1), transparent 70%);
  z-index: 1;
}

.play-button {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.5);
  z-index: 10;
  position: relative;
  will-change: transform;
}

.play-button:hover {
  transform: scale(1.15);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.7);
}

.play-button i {
  margin-left: 6px;
}

.placeholder-text {
  color: var(--gray-400);
  font-size: 18px;
  margin-top: 24px;
  position: relative;
  z-index: 10;
  font-weight: 600;
}

.placeholder-hint {
  color: var(--gray-600);
  font-size: 14px;
  margin-top: 12px;
  position: relative;
  z-index: 10;
  max-width: 90%;
  text-align: center;
}

/* Comparación optimizada */
.comparacion-simple {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.comparacion-col {
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.comparacion-col.problema {
  border: 2px solid rgba(239, 68, 68, 0.3);
}

.comparacion-col.solucion {
  border: 2px solid rgba(34, 211, 238, 0.3);
}

.comparacion-col.solucion:hover {
  border-color: var(--green-500);
  transform: translateY(-6px);
}

.comparacion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.comparacion-title i {
  flex-shrink: 0;
}

.comparacion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparacion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.5;
}

.comparacion-list i {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparacion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Secciones generales */
.incluye-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, var(--black), rgba(34, 211, 238, 0.02), var(--black));
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 80px;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 10;
}

.incluye-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.incluye-item {
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  border: 2px solid rgba(34, 211, 238, 0.2);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  will-change: transform;
}

.incluye-item:hover {
  transform: translateY(-8px);
  border-color: var(--green-500);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.3);
}

.incluye-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(34, 211, 238, 0.15);
  color: var(--green-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.incluye-icon {
  width: 100px;
  height: 100px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.incluye-item:hover .incluye-icon {
  background: rgba(34, 211, 238, 0.2);
  transform: scale(1.08);
}

.incluye-icon i {
  color: var(--green-400);
}

.incluye-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 8px;
}

.incluye-item p {
  color: var(--gray-400);
  font-size: 15px;
}

/* Testimonios */
.testimonios-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.testimonios-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonio-card-simple {
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  border: 2px solid rgba(34, 211, 238, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonio-card-simple:hover {
  transform: translateY(-6px);
  border-color: var(--green-500);
  box-shadow: 0 15px 30px rgba(34, 211, 238, 0.2);
}

.testimonio-video-simple {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--gray-800), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.testimonio-video-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at center, rgba(34, 211, 238, 0.08), transparent 70%);
}

.play-button-small {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.4);
}

.testimonio-video-simple:hover .play-button-small {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.6);
}

.play-button-small i {
  margin-left: 4px;
}

.testimonio-content-simple {
  padding: 32px 28px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonio-quote {
  font-style: italic;
  color: var(--gray-300);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 15px;
}

.testimonio-author-simple {
  margin-bottom: 20px;
}

.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: var(--gray-500);
}

.testimonio-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(34, 211, 238, 0.15);
}

.stat-mini {
  flex: 1;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green-400);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FAQ */
.faq-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--black), rgba(34, 211, 238, 0.02), var(--black));
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  border: 2px solid rgba(34, 211, 238, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.faq-item:hover {
  border-color: var(--green-500);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.15);
  transform: translateY(-3px);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-question i {
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-question h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.faq-answer {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.6;
  margin-left: 32px;
}

/* CTA Final */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.08), transparent 70%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--gray-300);
  margin-bottom: 48px;
  line-height: 1.6;
}

.whatsapp-button-large {
  margin-bottom: 32px;
}

.cta-note {
  color: var(--gray-500);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-note i {
  color: var(--green-400);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  padding: 60px 0 40px;
  background: var(--gray-900);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-400);
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 15px;
}

.footer-copy {
  color: var(--gray-600);
  font-size: 14px;
}

/* Tech Note */
.tech-note {
  max-width: 900px;
  margin: 80px auto 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(6, 182, 212, 0.03));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
}

.tech-note-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-note-icon i {
  color: var(--green-400);
}

.tech-note-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 8px;
}

.tech-note-content p {
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.7;
}

/* Casos de Uso */
.casos-section {
  padding: 120px 0;
  background: var(--black);
}

.casos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.caso-card {
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  border: 2px solid rgba(34, 211, 238, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.caso-card:hover {
  border-color: var(--green-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.15);
}

.caso-icon {
  width: 80px;
  height: 80px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.caso-card:hover .caso-icon {
  background: rgba(34, 211, 238, 0.15);
  transform: scale(1.08);
}

.caso-icon i {
  color: var(--green-400);
}

.caso-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.caso-card p {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .comparacion-simple {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .comparacion-arrow {
    transform: rotate(90deg);
  }

  .incluye-grid-simple {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Ocultar más partículas en tablets */
  .particles .particle:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: 100svh;
  }

  h1 {
    margin-bottom: 32px;
  }

  .cta-button, .whatsapp-button-large {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 18px 36px;
  }

  .demo-section, .incluye-section, .testimonios-section, .faq-section {
    padding: 80px 0;
  }

  .cta-section {
    padding: 100px 0;
  }

  .testimonios-grid-simple, .faq-grid {
    grid-template-columns: 1fr;
  }

  .incluye-grid-simple {
    grid-template-columns: 1fr;
  }

  .comparacion-arrow .arrow-icon {
    width: 36px;
    height: 36px;
  }

  .scroll-indicator {
    display: none;
  }

  .tech-note {
    flex-direction: column;
    padding: 24px;
  }

  .casos-grid {
    grid-template-columns: 1fr;
  }

  /* Solo 2 partículas en móvil */
  .particles .particle:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .comparacion-col {
    padding: 32px 24px;
  }

  .incluye-item {
    padding: 40px 24px;
  }

  .play-button {
    width: 80px;
    height: 80px;
  }

  .play-button i {
    width: 40px;
    height: 40px;
  }
}

/* Respetar preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
