

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 80px;
  border-radius: 50px;
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  color: #ffffff;
}

.navbar.scrolled .nav-links a {
  color: #000000;
}

.nav-links a:hover {
  color: #d4a574;
}





/* MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

.navbar.scrolled .menu-toggle {
  color: #0f1b1a;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #0f1b1a;
  font-weight: 500;
}



/* ACTIVE */
.mobile-menu.active {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}


/* HERO BASE */
.hero-section {
  position: relative;
  height: 100vh;
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-container {
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}

/* TITLES */
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  margin: 25px auto;
  font-size: 1.1rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
}

/* TEXT GRADIENT */
.text-gradient-sunset {
  background: linear-gradient(90deg, #f59e0b, #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.btn-hero {
  background: linear-gradient(
    135deg,
    hsl(36 70% 45%),
    hsl(40 65% 55%)
  );
  color: #fff;
  box-shadow: 0 10px 30px rgba(201, 162, 77, 0.35);
  position: relative;
  overflow: hidden;
}

/* Animação suave contínua */
.btn-hero {
  animation: premiumPulse 3s ease-in-out infinite;
}

@keyframes premiumPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(201, 162, 77, 0.35);
  }
  50% {
    box-shadow: 0 15px 45px rgba(201, 162, 77, 0.55);
  }
}

/* Hover */
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(201, 162, 77, 0.6);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* Hover clean e elegante */
.btn-outline:hover {
  background: #fff;
  color: hsl(25 40% 15%);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}



/* STATS */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: rgba(255, 255, 255, 0.7);
  animation: float 2s infinite ease-in-out;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-stats {
    gap: 30px;
  }
}



/* FOOTER */
.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}


