/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0a0f1c;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header fixo */
header {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 64px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(8, 16, 36, 0.75);
  z-index: 1000;
}

header .logo img {
    height: 120px;
    transform: translateY(28px); /* metade pra fora */
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #ffd700;
}

/* Banner */
.banner {
  min-height: 60vh;
  background: linear-gradient(rgba(8, 16, 36, 0.7), rgba(8, 16, 36, 0.7)),
              url('../uploads/banner.png') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.banner-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #fff694;
}

.banner-content p {
  font-size: 1.2em;
  color: #cfd9e6;
}

/* Sobre */
.sobre {
  padding: 60px 20px;
}

.sobre .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sobre h2 {
  font-size: 2em;
  margin-bottom: 16px;
  color: #ffd700;
}

.sobre p {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #cfd9e6;
}

.sobre ul {
  list-style: none;
  margin-top: 20px;
}

.sobre ul li {
  margin: 10px 0;
  font-size: 1.1em;
}

/* Footer */
footer {
  height: 60px;
  text-align: center;
  padding: 16px;
  background-color: #000814;
  color: #fff;
  font-size: 0.9em;
  margin-top: auto;
}
