* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* TOPO */
.top-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.btn-login {
  background: #f4a300;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* BANNER */
header {
  display: flex;
  justify-content: center;
}

header img {
  width: 100%;
  max-width: 1920px;
  display: block;
}

/* SEÇÕES */
section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.img, .text {
  flex: 1;
}

.img img {
  width: 100%;
  border-radius: 12px;
}

h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.sub {
  font-weight: bold;
  color: #f4a300;
  margin-bottom: 15px;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}