.sessao-valor-sociedade {
    background-color: #f9fdf8;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin-top: 4rem;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.1);
    text-align: center;
  }
  
  .sessao-valor-sociedade h2 {
    font-size: 2rem;
    color: #35966b;
    margin-bottom: 2rem;
    font-weight: 700;
  }
  
  .sessao-valor-sociedade .texto-container {
    max-width: 860px;
    margin: 0 auto;
  }
  
  .sessao-valor-sociedade p {
    font-size: 1.2rem;
    color: #35966b;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .botao-contato {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.75rem 1.8rem;
    background-color: #35966b;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .botao-contato:hover {
    background-color: #2d8b5f;
  }
  
  .sessao-funcionalidades {
    padding: 4rem 2rem;
    background-color: #e6f1de;
    border-radius: 12px;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.1);
  }
  
  .sessao-funcionalidades h2 {
    font-size: 2rem;
    color: #35966b;
    margin-bottom: 2.5rem;
    font-weight: 700;
  }
  
  .funcionalidades-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .funcionalidade-card {
    background-color: #f9fdf8;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 320px;
    flex: 1 1 280px;
    box-shadow: 0 2px 10px rgba(46, 189, 124, 0.2);
    transition: transform 0.3s ease;
  }
  
  .funcionalidade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 15px rgba(46, 189, 124, 0.25);
  }
  
  .funcionalidade-card h3 {
    color: #35966b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .funcionalidade-card p {
    color: #35966b;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
  }
  