/* Estilo para o link da área administrativa */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.admin-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.admin-link a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.admin-link i {
    font-size: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .admin-link {
        bottom: 15px;
        right: 15px;
    }
    
    .admin-link a {
        width: 45px;
        height: 45px;
    }
    
    .admin-link i {
        font-size: 18px;
    }
}
