/* Navegación */
.navbar-luxe {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.98) 60%, rgba(36, 1, 41, 0.98) 100%);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    will-change: transform;
}

.navbar-luxe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    pointer-events: none;
}

.navbar-luxe.scrolled {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.98) 60%, rgba(36, 1, 41, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 0.4rem 0;
    box-shadow: 0 4px 20px rgba(36, 1, 41, 0.6);
}

.navbar-brand {
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.95rem;
    margin: 0 0.3rem;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pb-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-luxe .navbar-nav .nav-link:hover,
.navbar-luxe .navbar-nav .nav-link:focus {
    color: white;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
