/* Novos estilos e ajustes */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
}

.hero-title div {
  margin-bottom: 0.5rem;
}

.hero-title .highlight {
  color: #146498;
  font-weight: 800;
  white-space: nowrap;
  display: block;
}

/* Ajustes da seção solução */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  flex-wrap: nowrap;
}

.process-step {
  flex: 1;
  padding: 1rem;
  text-align: center;
  min-width: 200px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-step h4 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #146498;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  color: #666;
}

.step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #631b7c;
  margin-bottom: 0.5rem;
}

.process-arrow {
  display: flex;
  align-items: center;
  color: #146498;
  font-size: 1.2rem;
  padding: 0 0.5rem;
  margin-top: 2rem;
}

/* Responsividade para process-steps */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: none;
    margin: 0.5rem 0;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-title .highlight {
  color: #146498;
  font-weight: 800;
  display: inline;
}

/* Cards */
.problema-card,
.solucao-card,
.beneficio-card {
  font-size: 0.9rem;
  padding: 1.5rem;
}

.problema-card h3,
.solucao-card h3,
.beneficio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.problema-card p,
.solucao-card p,
.beneficio-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Botões atualizados */
.btn-hero-primary,
.btn-solucao,
.btn-problema,
.btn-calculadora {
  background-color: #146498;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover,
.btn-solucao:hover,
.btn-problema:hover,
.btn-calculadora:hover {
  background-color: #0d4c7a;
  transform: translateY(-2px);
}

.btn-hero-secondary,
.btn-social {
  background-color: #631b7c;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero-secondary:hover,
.btn-social:hover {
  background-color: #4d1561;
  transform: translateY(-2px);
}

/* Ajustes de tamanho para textos */
.hero-subtitle,
.problema-subtitle,
.solucao-subtitle,
.beneficios-subtitle {
  font-size: 1rem;
  line-height: 1.5;
}

.stat-number {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.8rem;
}

/* Feature items e highlights */
.feature-item,
.highlight-text {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}
