/* ============================================
   BOTÃO LOGIN MOBILE FIXO
   ============================================ */
.btn-login-mobile {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
    background: #2c5e2e;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.btn-login-mobile:hover {
    background: #1e4220;
    transform: scale(1.05);
}

.btn-logout-mobile {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

@media (max-width: 1200px) {
    .btn-login-mobile,
    .btn-logout-mobile {
        display: block;
    }
}