/* Navbar compartido para todo el sitio */
.navbar { 
  position: fixed; 
  top: 0; 
  width: 100%; 
  background: rgba(255,255,255,0.92); 
  backdrop-filter: blur(25px); 
  border-bottom: 1px solid rgba(212,185,164,0.25); 
  z-index: 1000; 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
  box-shadow: 0 8px 32px rgba(212,185,164,0.12), 0 2px 8px rgba(0,0,0,0.04); 
  height: 85px;
}

.navbar.scrolled { 
  background: rgba(255,255,255,0.98); 
  box-shadow: 0 12px 40px rgba(212,185,164,0.25), 0 4px 12px rgba(0,0,0,0.08); 
  height: 75px;
}

.nav-container { 
  max-width: 1400px; 
  margin: 0 auto; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 15px 40px; 
  height: 100%;
}

.logo img { 
  height: 70px;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
  height: 60px;
}

.nav-menu { 
  display: flex; 
  gap: 50px; 
  list-style: none; 
  align-items: center; 
}

.nav-menu a { 
  text-decoration: none; 
  color: #6b5d54; 
  font-size: 0.95rem; 
  font-weight: 600; 
  letter-spacing: 0.8px; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  position: relative; 
  padding: 8px 0;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-menu a::after { 
  content: ''; 
  position: absolute; 
  bottom: -2px; 
  left: 50%; 
  width: 0; 
  height: 2px; 
  background: linear-gradient(90deg, #d4b9a4, #c9b299); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-menu a:hover { 
  color: #d4b9a4; 
  transform: translateY(-1px);
}

.nav-menu a:hover::after { 
  width: 100%; 
}

.nav-cta { 
  background: linear-gradient(135deg, #d4b9a4, #c9b299); 
  color: #fff !important; 
  padding: 14px 35px; 
  border-radius: 35px; 
  box-shadow: 0 6px 25px rgba(212,185,164,0.35), 0 2px 8px rgba(212,185,164,0.2); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.nav-cta:hover { 
  transform: translateY(-3px) scale(1.05); 
  box-shadow: 0 10px 35px rgba(212,185,164,0.5), 0 4px 15px rgba(212,185,164,0.3); 
  border-color: rgba(255,255,255,0.4);
}

.nav-cta::after { 
  display: none; 
}

.nav-admin {
  color: #8b7355 !important;
  font-size: 0.9rem !important;
  opacity: 0.85;
  transition: all 0.3s;
}

.nav-admin:hover {
  opacity: 1;
  color: #d4b9a4 !important;
}

.menu-toggle { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
}

.menu-toggle span { 
  width: 25px; 
  height: 3px; 
  background: #6b5d54; 
  transition: all 0.3s; 
  border-radius: 2px; 
}

@media (max-width: 768px) {
  * { 
    max-width: 100vw; 
    margin: 0; 
  }
  
  .navbar { 
    width: 100%; 
    left: 0; 
    right: 0; 
    box-sizing: border-box; 
  }
  
  .nav-container { 
    padding: 15px; 
    max-width: 100%; 
    margin: 0; 
    box-sizing: border-box; 
    justify-content: space-between; 
  }
  
  .logo { 
    flex-shrink: 0; 
  }
  
  .logo img { 
    height: 40px; 
    max-width: 150px; 
  }
  
  .nav-menu { 
    position: fixed; 
    top: 75px; 
    left: -100%; 
    width: 100vw; 
    max-width: 100vw; 
    height: calc(100vh - 75px); 
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(20px); 
    flex-direction: column; 
    padding: 40px 20px; 
    gap: 25px; 
    transition: left 0.3s; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    align-items: flex-start; 
    overflow-y: auto; 
    z-index: 999; 
  }
  
  .nav-menu.active { 
    left: 0; 
  }
  
  .nav-menu a { 
    font-size: 1.1rem; 
    width: 100%; 
    padding: 15px 0; 
    border-bottom: 1px solid rgba(212,185,164,0.1); 
  }
  
  .nav-menu a::after { 
    display: none; 
  }
  
  .nav-cta { 
    width: 100%; 
    text-align: center; 
    margin-top: 20px; 
    padding: 12px 20px !important; 
  }
  
  .menu-toggle { 
    display: flex; 
    z-index: 1000; 
    flex-shrink: 0; 
    margin-left: auto; 
  }
}
