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

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #d6e600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.logo img {
  width: 350px;
  height: auto;
  margin-bottom: 20px;
}

.nome-empresa {
  margin-bottom: 20px;
  font-size: 24px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
  color: #d6e600;
  text-decoration: none;
  font-size: 18px;
  margin: 10px 0;
  padding: 15px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.link i {
  margin-right: 10px;
}

.link:hover {
  background-color: #333;
  transform: scale(1.05);
}

