
/* Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card { text-align: left; }
.service-icon { font-size: 3rem; margin-bottom: 1rem; transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-description { color: var(--color-text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.service-features { display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-muted); font-size: 0.875rem; }
.service-features svg { color: var(--color-primary); flex-shrink: 0; }

/* Proceso */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.process-card { text-align: center; }
.process-icon { font-size: 3rem; margin-bottom: 1rem; }
.process-number { font-size: 4rem; font-weight: 800; color: rgba(255, 255, 255, 0.05); margin-bottom: 1rem; }
.process-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.process-description { color: var(--color-text-muted); line-height: 1.6; }

/* Casos de Uso */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.usecase-card { position: relative; overflow: hidden; cursor: pointer; }
.usecase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--usecase-gradient);
  opacity: 0;
  transition: var(--transition);
}
.usecase-card:hover::before { opacity: 0.1; }
.usecase-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--usecase-gradient);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.usecase-card:hover .usecase-icon { transform: scale(1.1); }
.usecase-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.usecase-description { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.usecase-link { display: flex; align-items: center; gap: 0.5rem; color: var(--color-primary); font-weight: 500; transition: var(--transition); }
.usecase-card:hover .usecase-link { color: white; gap: 1rem; }

/* Ventajas */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.whyus-card { display: flex; flex-direction: column; }
.whyus-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.whyus-icon { font-size: 2.5rem; }
.whyus-stat { text-align: right; }
.whyus-stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.whyus-stat-label { font-size: 0.75rem; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 1px; }
.whyus-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: white; }
.whyus-description { color: var(--color-text-muted); line-height: 1.6; flex-grow: 1; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}
.stat-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.stat-label { color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 2px; font-size: 0.875rem; font-weight: 500; }

/* Testimonios */
.testimonial-carousel { max-width: 900px; margin: 0 auto; }
.testimonial-card { position: relative; padding: 3rem; }
.testimonial-text { font-size: 1.25rem; color: var(--color-text-muted); line-height: 1.8; font-style: italic; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--color-primary); object-fit: cover; }
.testimonial-name { font-size: 1.125rem; font-weight: 700; }
.testimonial-role { color: var(--color-text-dim); font-size: 0.875rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(6, 182, 212, 0.5); }
.faq-question { width: 100%; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; text-align: left; color: white; font-size: 1.125rem; font-weight: 600; transition: var(--transition); }
.faq-question:hover { color: var(--color-primary); }
.faq-icon { transition: var(--transition); flex-shrink: 0; color: var(--color-primary); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-content { padding: 0 1.5rem 1.5rem; color: var(--color-text-muted); line-height: 1.7; }

/* CTA */
.cta-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.8));
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1.5rem; }
.cta-subtitle { font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.cta-benefits { display: flex; flex-direction: column; gap: 1rem; }
.cta-benefits li { display: flex; align-items: center; gap: 0.75rem; color: var(--color-text-muted); }
.cta-benefits li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.886 7.293 5.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.form-disclaimer { text-align: center; font-size: 0.75rem; color: var(--color-text-dim); margin-top: 1rem; }
.form-success { text-align: center; padding: 3rem; }
.form-success-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, #10b981, #059669); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2.5rem; }

/* SUGERENCIA 1: Centrado + resalte para Servicios y Casos de Uso */
.services-grid,
.usecases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services-grid .service-card {
  flex: 1 1 300px;
  max-width: 400px;
}
.usecases-grid .usecase-card {
  flex: 1 1 280px;
  max-width: 400px;
}
.service-card,
.usecase-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover,
.usecase-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #22d3ee;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.7),
              0 0 25px rgba(34, 211, 238, 0.45);
}

/* SUGERENCIA 2: Centrado + resalte para Proceso */
.process-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.process-grid .process-card {
  flex: 1 1 250px;
  max-width: 400px;
}
.process-card {
  border: 1px solid transparent;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              border-color 0.3s ease, background 0.3s ease;
}
.process-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #22d3ee;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.7),
              0 0 25px rgba(34, 211, 238, 0.45);
}

/* SUGERENCIA 3: Centrado + resalte para Ventajas */
.whyus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.whyus-grid .whyus-card {
  flex: 1 1 280px;
  max-width: 400px;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              border-color 0.3s ease, background 0.3s ease;
}
.whyus-grid .whyus-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #22d3ee;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.7),
              0 0 25px rgba(34, 211, 238, 0.45);
}

/* === FIN SECTIONS.CSS v2 === */