* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background-color: #0b3d91;
  color: white;
  padding: 20px 0;
}

header h1 {
  float: left;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url("../img/banner.jpg") no-repeat center center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero .btn {
  background-color: #ff6600;
  color: white;
  padding: 10px 25px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}

.produtos-destaque {
  padding: 60px 0;
  background-color: white;
  text-align: center;
}

.produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-top: 30px;
}

.produto {
  width: 250px;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.produto img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

footer {
  background-color: #0b3d91;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .produtos {
    flex-direction: column;
    align-items: center;
  }
}
