* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #0a3d62;
  color: #fff;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-final {
 height: auto;
  max-height: 90px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #1e90ff;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #fff;
  color: #1e90ff;
  text-decoration: none;
  border-radius: 5px;
}

.servicos, .sobre, .contato {
  padding: 60px 0;
  background: #fff;
}

.servicos .cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  background: #eaf2f8;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  padding: 12px;
  background: #0a3d62;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
