.header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)),
    url("https://images.unsplash.com/photo-1555992336-03a23c7b20ee?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;

  border-bottom: 4px solid #8e2f23;
  padding: 40px 20px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
}

.brand h1 {
  color: white;
  font-size: 52px;
  font-weight: 700;
}

.brand p {
  color: #ddd;
  margin: 10px 0 25px;
  font-size: 16px;
}

/* NAV MAIS PREMIUM */

nav {
  display: flex;
  gap: 12px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: 0.25s;
}

nav a:hover {
  background: #8e2f23;
  transform: translateY(-2px);
}
