
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Background */
.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease, transform 1s ease;
}

.overlay-hero {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,40,0.9), rgba(10,20,40,0.7), transparent);
}

/* Content */
.content-hero {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.text-hero {
  max-width: 600px;
  color: white;
  animation: fadeUp 0.6s ease;
}

.tag-hero {
  display: inline-block;
  border: 1px solid #4fd1c5;
  color: #4fd1c5;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  white-space: pre-line;
}

p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  font-size: 18px;
}

/* Buttons */
.actions-hero {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.primary-hero {
  background: #4fd1c5;
  color: white;
}

.primary:hover {
  opacity: 0.9;
}

.secondary-hero {
  color: rgba(255,255,255,0.8);
}

.play {
  display: inline-flex;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

/* Dots */
.dots-hero {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots-hero button {
  height: 6px;
  width: 8px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dots button.active {
  width: 30px;
  background: #4fd1c5;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}