* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

#home {
  background-image: url(./ASSETS/imagem_header.png);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
  height: 50vh;
}

/* Aqui é muito importante forçando descer a logo */
.logo{
  padding-top: 200px;
}

#header{
    background: #001f3f;
    color: white;
}


header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #001f3f;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #001f3f;
}
.valores h3 {
  font-size: 24px;
  padding-bottom: 20px;
}

.valores ul {
  list-style: none;
}

.valores li {
  margin-bottom: 10px;
}

/* teste */
/* .fundo{
  background-image: url(./images/torres.png);
  background-size: cover;
} */

.solucoes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.solucao {
  flex: 1 1 300px;
  background: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
}

.solucao h3{
  padding-bottom: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #001f3f;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

}