/* Estilo geral para a landing page */

main {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
  background-color: #f9fdf8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.15);
}

h1 {
  font-size: 2.8rem;
  color: #35966b;
  margin-bottom: 0.3rem;
  font-weight: 700;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p {
  font-size: 1.25rem;
  color: #35966b;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
  font-style: italic;
}

/* Cards de benefícios */
.benefits {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.benefit-card {
  background-color: #e6f1de;
  border-radius: 12px;
  padding: 1.5rem;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(46, 189, 124, 0.25);
  transition: transform 0.3s ease;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 15px rgba(46, 189, 124, 0.25);
}

.benefit-card h3 {
  color: #35966b;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  text-align: center; /* centraliza o texto */
}

.benefit-card p {
  font-size: 1rem;
  color: #35966b;
  font-weight: 400;
  line-height: 1.4;
}




body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f6f8f5;
  }
  
  nav {
    background-color: #35966b;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
  }
  
  nav a:hover {
    color: #a3f7bf;
    border-bottom: 2px solid #a3f7bf;
  }
  
  nav a.active {
    border-bottom: 2px solid #ffffff;
  }

  
  .topo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 90px;
    width: auto;
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
  }
  
  nav a:hover {
    color: #a3f7bf;
    border-bottom: 2px solid #a3f7bf;
  }
  
  nav a.active {
    border-bottom: 2px solid #ffffff;
  }

  .logo img {
    height: 60px; /* antes era 40px */
    width: auto;
  }