body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topo {
  background-color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo-topo {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li a {
  text-decoration: none;
  color: #944800;
  font-weight: 500;
}

.hero {
  height: 100vh;
  background: url('img/banner-fundo.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
}

.hero-box {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo-central {
  width: 120px;
}

.hero-text h1 {
  font-size: 28px;
  color: #3a2f2f;
  font-weight: bold;
  line-height: 1.4;
}

.slogan {
  font-weight: bold;
  margin-top: 10px;
  color: #a64b00;
  font-size: 14px;
}
