/* Estilos específicos para a página de Criação de Agentes de IA */

/* Service Content */
.service-content {
  padding: 80px 0;
}

.service-content h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.service-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.service-intro h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-intro p {
  font-size: 1.2rem;
  color: var(--text-color-light);
  line-height: 1.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* Benefits List */
.service-benefits {
  background: #f8f9fa;
  padding: 60px 0;
  margin: 60px 0;
}

.service-benefits h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefits-list li i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
}

.benefits-list li span {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Service Process */
.service-process {
  padding: 60px 0;
  background: #fff;
}

.service-process h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 50px;
}

/* Process Steps */
.process-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: 1;
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.step h4 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding-left: 30px;
}

.step p {
  color: var(--text-color-light);
  line-height: 1.6;
  padding-left: 30px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  padding: 60px;
  border-radius: 12px;
  color: #fff;
  margin: 60px auto;
  max-width: 900px;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn {
  background: #fff;
  color: var(--primary-color);
  font-size: 1.1rem;
  padding: 15px 40px;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background: var(--gray-color);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-intro h2,
  .service-benefits h3,
  .service-process h3,
  .cta-section h3 {
    font-size: 2rem;
  }
  
  .service-intro p {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .benefits-list li i {
    margin: 0 0 15px 0;
  }
  
  .process-steps::before {
    left: 20px;
  }
  
  .step {
    margin-left: 20px;
  }
  
  .step-number {
    left: -30px;
  }
  
  .step h4,
  .step p {
    padding-left: 10px;
  }
  
  .cta-section {
    padding: 40px 20px;
    margin: 40px 20px;
  }
}

@media (max-width: 576px) {
  .service-intro h2,
  .service-benefits h3,
  .service-process h3,
  .cta-section h3 {
    font-size: 1.8rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .step h4 {
    font-size: 1.2rem;
  }
  
  .step p {
    font-size: 1rem;
  }
} 