.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-image 1s ease-in-out;
}

/* Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

/* Content */
.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  text-align: center;
  padding: 20px;
  animation: fadeUp 1.5s ease;
}

.tag {
  color: #fdfcfc;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero h1 {
  font-size: 3.2rem;
  margin: 15px 0;
  color:#E45101;
}

.hero p {
  font-size: 1.2rem;
  height: 30px;
}

/* WhatsApp floating */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 14px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    height: 90vh;
    align-items: center;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .tag {
    font-size: 12px;
  }
}