
.sticky-navbar {
    position: sticky;
    top: 0;
    background-color: rgba(10, 17, 24, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--oro-tga);
    z-index: 1000;
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    color: var(--oro-tga);
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: var(--texto-claro);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--oro-tga);
}

