/* --- NAVBAR PÚBLICA COMPARTILHADA --- */
.navbar-public {
    background: rgba(7, 7, 8, 0.75);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
}

/* --- BOTÕES NEON --- */
.btn-neon-solid {
    background-color: #39ff14;
    color: #000 !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-neon-solid:hover {
    background-color: #32e612;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.4);
}

.btn-outline-custom {
    border: 1px solid rgba(255,255,255,0.15) !important;
    background: rgba(255,255,255,0.03) !important;
    color: #fff !important;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline-custom:hover {
    border-color: #39ff14 !important;
    color: #39ff14 !important;
    box-shadow: 0 0 15px rgba(57,255,20,0.1);
    transform: translateY(-2px);
}
