/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: white;
  font-family: 'Arial', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 800px;
  width: 100%;
}

.headline {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.logo {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #3DF58C;
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(61, 245, 140, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #2ccf70;
  transform: translateY(-2px);
}

/* Responsivo para telas menores */
@media (max-width: 600px) {
  .headline {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .logo {
    max-width: 90%;
  }
}
