body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #f8f9fa;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.5rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.btn {
  padding: 15px 30px;
  background-color: #8e44ad; /* Roxo padrão */
  color: white;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #6c3483; /* Roxo escuro */
}

.btn-highlight {
  background-color: #a347ff; /* Roxo neon */
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(163, 71, 255, 0.6);
  transition: transform 0.2s ease, background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-highlight:hover {
  transform: scale(1.05);
  background-color: #842fd1;
  box-shadow: 0 0 25px rgba(163, 71, 255, 0.9);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 60px 20px;
  background: white;
}

.feature {
  flex: 1 1 300px;
  max-width: 400px;
  margin: 20px;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.cta {
  background: #8e44ad; /* Roxo escuro */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #aaa;
}
