/* CSS ESPECÍFICO PARA A SEÇÃO SOBRE EXPANDIDA */

/* Seção Sobre Expandida */
.sobre-expandida {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sobre-header {
  text-align: center;
  margin-bottom: 60px;
}

.sobre-header h2 {
  font-size: 2.5rem;
  color: var(--cinza-tech);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.sobre-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--verde-gradiente);
  border-radius: 2px;
}

.sobre-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #666;
}

/* Grid de informações sobre o projeto */
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.sobre-card {
  background: var(--branco);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--sombra);
  transition: all 0.3s ease;
  border-top: 4px solid var(--verde);
}

.sobre-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.sobre-card.azul {
  border-top-color: var(--azul);
}

.sobre-card-icon {
  font-size: 2.5rem;
  color: var(--verde);
  margin-bottom: 20px;
}

.sobre-card.azul .sobre-card-icon {
  color: var(--azul);
}

.sobre-card h3 {
  color: var(--cinza-tech);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Seção de processo de trabalho */
.processo-trabalho {
  margin: 60px 0;
}

.processo-titulo {
  text-align: center;
  margin-bottom: 40px;
}

.processo-titulo h3 {
  font-size: 2rem;
  color: var(--cinza-tech);
  margin-bottom: 15px;
}

.processo-etapas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.processo-etapas::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--verde-gradiente);
  z-index: 1;
}

.etapa {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
  margin-bottom: 30px;
}

.etapa-numero {
  width: 80px;
  height: 80px;
  background: var(--verde-gradiente);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.etapa h4 {
  color: var(--cinza-tech);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Seção de benefícios */
.beneficios-section {
  background: var(--branco);
  padding: 60px;
  border-radius: 10px;
  box-shadow: var(--sombra);
  margin: 60px 0;
}

.beneficios-titulo {
  text-align: center;
  margin-bottom: 40px;
}

.beneficios-titulo h3 {
  font-size: 2rem;
  color: var(--cinza-tech);
  margin-bottom: 15px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.beneficio-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.beneficio-icon {
  background: var(--verde-claro);
  color: var(--verde);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.beneficio-text h4 {
  color: var(--cinza-tech);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* Seção de chamada para ação */
.cta-sobre {
  text-align: center;
  background: var(--cinza-tech);
  color: var(--branco);
  padding: 60px 40px;
  border-radius: 10px;
  margin-top: 60px;
}

.cta-sobre h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--branco);
}

.cta-sobre p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
  background: var(--branco);
  color: var(--cinza-tech);
  padding: 15px 40px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--verde);
  color: var(--branco);
  transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 992px) {
  .processo-etapas::before {
    display: none;
  }

  .etapa {
    flex: 0 0 50%;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .sobre-expandida {
    padding: 60px 0;
  }

  .sobre-header h2 {
    font-size: 2rem;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .etapa {
    flex: 0 0 100%;
  }

  .beneficios-section {
    padding: 40px 20px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .cta-sobre {
    padding: 40px 20px;
  }

  .cta-sobre h3 {
    font-size: 1.6rem;
  }
}
