body {
  font-family: 'Orbitron', sans-serif; /* Define a fonte principal */
  color: #fff;
  background-color: #000;
}

h1, h2 {
  font-weight: 700; /* Usa o peso mais forte para títulos */
}

p {
  font-weight: 400; /* Usa peso normal para parágrafos */
}


.hero {
  position: relative;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
              url('BBAI.webp') no-repeat center center/cover;
  height: 100vh;
  color: white;
  padding: 20px;
  background-size: 100%;
}

.overlay nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}

nav h1 {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.hero-content {
  text-align: center;
  margin-top: 250px;
}

.hero-image {
  max-width: 300px;
  margin: 20px auto;
}

.cta-button {
  padding: 10px 20px;
  background: #00ffcc;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 20px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 10px;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
}

footer ul li a {
  color: #00ffcc;
  text-decoration: none;
}
