* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 600;
}

.btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #7c3aed;
  color: white;
}

.btn-primary:hover {
  background: #5b21b6;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #302b63;
}

.hero {
  text-align: center;
  margin-top: 120px;
  animation: fadeIn 1s ease-in-out;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  opacity: 0.8;
  margin-bottom: 40px;
}

footer {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 100px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  header {
    flex-direction: column;
    gap: 10px;
  }
}
