* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #D5B979; #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #000080 ;#003366;
  color: white;
  padding: 30px 0;
}

.logo {
  float: left;
  font-size: 24px;
  font-weight: bold;
}

nav {
  float: right;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: url('wing.png?auto=format&fit=crop&w=1400&q=80') no-repeat center/cover;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: #ff6600;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 60px 0;
}

.sobre, .ramos, .contato {
  background: white;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.ramos-lista {
  list-style: disc;
  padding-left: 20px;
}

footer {
  background:#003366;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}
