/* ===== HEADER ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
}
header {
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Emblema_da_Guarda_Nacional_Republicana_%28Portugal%29.svg/800px-Emblema_da_Guarda_Nacional_Republicana_%28Portugal%29.svg.png")
    no-repeat center;
  background-size: 80px;
  background-color: #004d40;
  padding: 1rem 2rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 1.3rem;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 10px;
  position: relative;
}
nav a {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.3s;
}
nav a:hover {
  background: #008080;
}
footer {
  background: #004d40;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* ===== PASSATEMPO ===== */
.passatempo {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.passatempo h2 {
  color: #004d40;
}
.countdown {
  font-size: 1.5rem;
  margin: 1rem 0;
  font-weight: bold;
  color: #c62828;
}
.btn-participar {
  display: inline-block;
  background: #008080;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
.btn-participar:hover {
  background: #004d40;
}
.btn-inativo {
  background: #999 !important;
  cursor: not-allowed;
  pointer-events: none;
}
