/* css/flowstrategy.css - Estilos específicos para la página FlowStrategy */

/* Hero Section específico */
.flowstrategy-hero {
  background: linear-gradient(135deg, #0d6efd 0%, #1a1a2e 100%);
  padding: 180px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.flowstrategy-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff" opacity="0.03"/></svg>');
  background-size: cover;
}

.flowstrategy-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #a5d8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flowstrategy-hero .tagline {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Indicadores de beneficios */
.benefit-indicators {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
  flex-wrap: wrap;
}

.benefit-indicator {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 200px;
}

.benefit-indicator .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d6efd;
  display: block;
  margin-bottom: 10px;
}

.benefit-indicator .label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Sección de características */
.feature-showcase {
  padding: 100px 0;
  background-color: #f8fafc;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid #0d6efd;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0d6efd, #20c997);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

/* Sección de proceso */
.process-section {
  padding: 100px 0;
  background-color: white;
}

.process-step {
  position: relative;
  padding: 30px;
  text-align: center;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.process-step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #0d6efd, #6f42c1);
  z-index: 1;
}

/* Demostración interactiva */
.demo-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.demo-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-visualization {
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.demo-visualization:before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(13, 110, 253, 0.1) 50%, transparent 70%);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-50%) translateY(-50%) rotate(45deg); }
  100% { transform: translateX(50%) translateY(50%) rotate(45deg); }
}

/* Testimonios */
.testimonials-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(13, 110, 253, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  margin-right: 15px;
}

/* Precios */
.pricing-section {
  padding: 100px 0;
  background-color: white;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.pricing-card.featured {
  border-color: #0d6efd;
  transform: scale(1.05);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured:before {
  content: 'RECOMENDADO';
  position: absolute;
  top: 20px;
  right: -35px;
  background: #0d6efd;
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-header {
  margin-bottom: 30px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #0d6efd;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: #666;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #20c997;
  margin-right: 10px;
}

/* CTA específico */
.flowstrategy-cta {
  background: linear-gradient(135deg, #0d6efd 0%, #20c997 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.flowstrategy-cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .flowstrategy-hero h1 {
    font-size: 2.8rem;
  }
  
  .benefit-indicator {
    min-width: 150px;
    margin-bottom: 20px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .flowstrategy-hero {
    padding: 150px 0 80px;
    text-align: center;
  }
  
  .flowstrategy-hero h1 {
    font-size: 2.3rem;
  }
  
  .process-step:not(:last-child):after {
    display: none;
  }
}