:root {
  --primary-gradient: linear-gradient(45deg, #ff6b00, #ff8f00);
}

.hero-section {
  background: url("https://t3.ftcdn.net/jpg/02/70/73/76/360_F_270737695_IaAkTD2p7vhmI5YNuYAGYlk2pGVwJUXS.jpg")
    center/cover;
  color: white;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
}

.logo {
  font-family: "Arial Black", sans-serif;
  font-size: 2.2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px;
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

.bonus-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 15px 20px;
  margin: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn {
  background: var(--primary-gradient);
  color: white !important;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  font-weight: 500;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

section {
  padding: 60px 0;
}

.feature-icon {
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
