/* 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: fixed;
  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.9);
  z-index: 1000;
  backdrop-filter: blur(6px);
}

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

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

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: 100vh;
  background: linear-gradient(rgba(8, 16, 36, 0.75), rgba(8, 16, 36, 0.75)),
              url('../uploads/banner.png') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  padding-top: 80px; /* espaço para não ficar escondido pelo header */
}

/* Form Container sobre o banner */
.form-container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.form-container h1 {
  font-size: 2.2em;
  margin-bottom: 12px;
  color: #fff694;
}

.form-container p {
  margin-bottom: 24px;
  color: #cfd9e6;
  font-size: 0.95em;
}

/* Formulário */
form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  text-align: left;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: none;
  border-radius: 8px;
  background-color: #081024;
  color: #fff;
  font-size: 1em;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border: 2px solid #ffd700;
  box-shadow: 0 0 8px rgba(255,215,0,0.5);
}

form textarea {
  resize: none;
  height: 120px;
}

form button {
  background: #fff694;
  color: #0a0f1c;
  padding: 14px 36px;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

form button:hover {
  background: #ffd700;
  transform: scale(1.05);
}

/* Mensagem de enviado */
#msg {
  margin-top: 12px;
  font-weight: bold;
  text-align: center;
  font-size: 0.95em;
}

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

/* Responsivo */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }

  .form-container h1 {
    font-size: 1.6em;
  }
}
