.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #60a5fa;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #c7d2fe;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* BOTÕES */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}

.btn.primary {
  background: #2563eb;
  color: #fff;
}

.btn.primary:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

.btn.secondary {
  border: 2px solid #60a5fa;
  color: #60a5fa;
}

.btn.secondary:hover {
  background: #60a5fa;
  color: #020617;
  transform: translateY(-3px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }
}
