.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 2.5rem; /* Menú mucho más compacto y discreto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px; /* Logo más discreto y elegante */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.8rem; /* Fuente más pequeña y refinada */
    font-weight: 700;
    margin-left: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: none;
}

.nav-links a:hover {
    color: var(--rosa-palo);
    opacity: 1;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    .navbar {
        padding: 0.4rem 1.2rem;
    }
    .nav-links a {
        margin-left: 1rem;
        font-size: 0.7rem;
    }
}
