body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

header {
  background-color: #f0d316;
  padding: 20px;
  text-align: left;
  font-size: 36px;
  font-weight: 700;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

#destaque {
  background-color: #f2f2f2;
  padding: 50px;
  text-align: left;
}

#destaque h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#destaque p {
  font-size: 18px;
  font-weight: 400;
}

#valores {
  padding: 50px;
  text-align: left;
}

#valores h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#valores ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

#valores li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

  
  #downloads {
    background-color: #f8f8f8;
    padding: 50px;
    text-align: left;
  }
  
  #downloads h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
  }
  
  #downloads p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  #downloads .downloads-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 30px;
  }
  
  .download-item {
    margin: 10px;
    justify-content: left;
  }
  
  .download-item a {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
  }
  
  .download-item a i {
    margin-right: 5px;
  }
  
  .download-item a:hover {
    background-color: #555;
  }
  
  .download-all a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
  }
  
  .download-all a i {
    margin-right: 5px;
  }
  
  .download-all a:hover {
    background-color: #555;
  }
  
  #contato {
    padding: 50px;
    text-align: center;
  }
  
  #contato h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }
  
  #contato p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
  }
  
  #contact-form textarea {
    height: 150px;
  }
  
  #contact-form button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
  }
  
  #contact-form button:hover {
    background-color: #555;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-media {
    margin-bottom: 20px;
  }
  
  .social-media a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 24px;
  }
  
  .social-media a:hover {
    color: #aaa;
  }
  
  footer p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
  }

  /* clientes */
  
  #clientes {
    background-color: #f8f8f8;
    padding: 50px;
    text-align: center;
  }
  
  #clientes .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #clientes h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .clientes-lista {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cliente {
    margin-top: 20px;
    flex-basis: 200px;
    flex-grow: 1;
    max-width: 400px;
  }
  
  .cliente img {
    width: 100%;
    height: auto;
  }
  
  