/* ======================================================
   MENU STICKY — PREMIUM LCW
====================================================== */

.lcw-site-header {
  position: relative;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  background: #ffffff;
}

/* Estado sticky */
.lcw-site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: lcwSlideDown 0.35s ease forwards;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Espaço para não dar jump */
body.lcw-has-sticky {
  padding-top: var(--lcw-header-height);
}

/* Animação */
@keyframes lcwSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Layout interno */
.lcw-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.lcw-logo {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: #111;
}

/* Menu */
.lcw-main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lcw-main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

/* CTA no menu */
.lcw-menu-cta .lcw-btn {
  padding: 10px 18px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 900px) {
  .lcw-header-inner {
    padding: 14px 18px;
  }

  .lcw-main-nav ul {
    gap: 14px;
  }
}


/* ======================================================
   SCROLL SPY — MENU ATIVO
====================================================== */

.lcw-main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.lcw-main-nav a.active {
  color: var(--lcw-primary, #8b6a55);
  font-weight: 600;
}

.lcw-main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--lcw-primary, #8b6a55);
  border-radius: 2px;
}


/* ================= MOBILE MENU FIX ================= */
.lcw-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.lcw-mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .lcw-main-nav {
    display: none;
  }

  .lcw-menu-toggle {
    display: block;
  }

  .lcw-mobile-nav {
    position: fixed;
    top: var(--lcw-header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    z-index: 999;
  }

  .lcw-mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .lcw-mobile-nav.active {
    display: block;
  }
}
