* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.construction-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.construction-content {
  padding: 40px 20px;
}

h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
}

.message {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.links {
  display: flex;
  justify-content: center;
}

.btn-home {
  display: inline-block;
  padding: 8px 20px;
  background: #0066FF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-home:hover {
  background: #0066FF;
}

/* Responsivo */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .message {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
}
