/* Seção Features */
#features {
  scroll-margin-top: 70px;
  background: var(--light-blue);
  padding: 3rem 0;
}

#features h2 {
  text-align: center;
  margin-bottom: 2rem;
}

#features .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

#features .feature-card:hover{
  border: 2px solid var(--orange);
}

#features .feature-card {
  background: #f9f9f9;
  border: 2px solid transparent;
  padding: 1.5rem;
  border-radius: 8px;
  width: calc(33% - 2rem);
  min-width: 250px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#features .feature-card h3 {
  margin-bottom: 0.5rem;
}

#features .feature-card ul {
  margin: 1rem 0 0 1rem;
  list-style: disc;
}